I couldn\'t find documentation on an equivalent of Java\'s final in Python, is there such a thing?
final
I\'m creating a snapshot of an object (used for restorati
http://code.activestate.com/recipes/576527/ defines a freeze function, although it doesn't work perfectly.
I would consider just leaving it mutable though.