for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# -*- coding: utf-8 -*-
from Persistence import PersistentMapping
def copyPermMap(old):
"""bullet proof copy
"""
new = PersistentMapping()
for k, v in old.items():
new[k] = v
return new