Created
May 13, 2012 10:52
-
-
Save glyphobet/2687745 to your computer and use it in GitHub Desktop.
Immutable dictionary in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ImmutableDict(dict): | |
def __setitem__(self, key, value): | |
raise TypeError("%r object does not support item assignment" % type(self).__name__) | |
def __delitem__(self, key): | |
raise TypeError("%r object does not support item deletion" % type(self).__name__) | |
def __getattribute__(self, attribute): | |
if attribute in ('clear', 'update', 'pop', 'popitem', 'setdefault'): | |
raise AttributeError("%r object has no attribute %r" % (type(self).__name__, attribute)) | |
return dict.__getattribute__(self, attribute) | |
def __hash__(self): | |
return hash(tuple(sorted(self.iteritems()))) | |
def fromkeys(self, S, v): | |
return type(self)(dict(self).fromkeys(S, v)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment