Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had the need to implement a hashable dict so I could use a dictionary as a key for another dictionary.

A few months ago I used this implementation: Python hashable dicts

However I got a notice from a colleague saying 'it is not really immutable, thus it is not safe. You can use it, but it does make me feel like a sad Panda'.

So I started looking around to create one that is immutable. I have no need to compare the 'key-dict' to another 'key-dict'. Its only use is as a key for another dictionary.

I have come up with the following:

class HashableDict(dict):
    """Hashable dict that can be used as a key in other dictionaries"""

    def __new__(self, *args, **kwargs):
        # create a new local dict, that will be used by the HashableDictBase closure class
        immutableDict = dict(*args, **kwargs)

        class HashableDictBase(object):
            """Hashable dict that can be used as a key in other dictionaries. This is now immutable"""

            def __key(self):
                """Return a tuple of the current keys"""
                return tuple((k, immutableDict[k]) for k in sorted(immutableDict))

            def __hash__(self):
                """Return a hash of __key"""
                return hash(self.__key())

            def __eq__(self, other):
                """Compare two __keys"""
                return self.__key() == other.__key() # pylint: disable-msg=W0212

            def __repr__(self):
                """@see: dict.__repr__"""
                return immutableDict.__repr__()

            def __str__(self):
                """@see: dict.__str__"""
                return immutableDict.__str__()

            def __setattr__(self, *args):
                raise TypeError("can't modify immutable instance")
            __delattr__ = __setattr__

        return HashableDictBase()

I used the following to test the functionality:

d = {"a" : 1}

a = HashableDict(d)
b = HashableDict({"b" : 2})

print a
d["b"] = 2
print a

c = HashableDict({"a" : 1})

test = {a : "value with a dict as key (key a)",
        b : "value with a dict as key (key b)"}

print test[a]
print test[b]
print test[c]

which gives:

{'a': 1}
{'a': 1}
value with a dict as key (key a)
value with a dict as key (key b)
value with a dict as key (key a)

as output

Is this the 'best possible' immutable dictionary that I can use that satisfies my requirements? If not, what would be a better solution?

share|improve this question
4  
A slightly nicer method would be tuple(sorted(immutableDict.items())) (or iteritems() pre 3.x). Also, just as a note, I'd go for FrozenDict as a name given the frozenset class that exists in Python by default, just for naming consistency - not that it really matters. – Lattyware Apr 3 '12 at 16:11

3 Answers

up vote 8 down vote accepted

If you are only using it as a key for another dict, you could go for frozenset(mutabledict.items()). If you need to access the underlying mappings, you could then use that as the parameter to dict.

mutabledict = dict(zip('abc', range(3))
immutable = frozenset(mutabledict.items())
read_frozen = dict(immutable)
read_frozen['a'] #=> 1

Note that you could also combine this with a class derived from dict, and use the frozenset as the source of the hash, while disabling __setitem__, as suggested in another answer. (@RaymondHettinger's answer for code which does just that).

share|improve this answer
1  
+1 This is a simple and clean solution. – Raymond Hettinger Apr 3 '12 at 16:22
1  
I like this - a dict is inherently orderless, so sorting it then making it a tuple seems a hackish way of ensuring equality by forcing an order - which could break if what you are storing has weird ordering. This way doesn't do that. This way is simpler, cleaner and I would say the best. – Lattyware Apr 3 '12 at 16:22
@Lattyware Thanks! – Marcin Apr 3 '12 at 16:27
@Marcin No worries, cheers for a nice solution. It's always nice to come to a question and find an answer you hadn't thought of - it's another thing you can use in the future, and one of the most rewarding things about answering on SO. – Lattyware Apr 3 '12 at 16:29
1  
Cheers for the answer. – Daan Timmer Apr 4 '12 at 7:48
show 1 more comment

The Mapping abstract base class makes this easy to implement:

import collections

class ImmutableDict(collections.Mapping):
    def __init__(self, somedict):
        self.dict = dict(somedict)   # make a copy
        self.hash = None

    def __getitem__(self, key):
        return self.dict[key]

    def __len__(self):
        return len(self.dict)

    def __iter__(self):
        return iter(self.dict)

    def __hash__(self):
        if self.hash is None:
            self.hash = hash(frozenset(self.dict.items()))
        return self.hash

    def __eq__(self, other):
        return self.dict == other.dict
share|improve this answer
I like your answer, however it is still not immutable. One can still reach the ImmutableDict({"a" : 1}).dict variable and change it. Yes you can make it hidden by __dict but then you can still reach it by using ImmutableDict({"a" : 1})._ImmutableDict__dict. Thus it is not 'really' immutable ;-) – Daan Timmer Apr 4 '12 at 7:46
also you are missing the __eq__ method. It is using that one as well. When you change the .dict afterwards the self.hash won't be updated which would seem as if it will still use it, but it doesn't use it to compare they keys it seems. It also uses __eq__. When I overrid it and compared the __hash__ methods it did work? – Daan Timmer Apr 4 '12 at 12:31
@DaanTimmer Thanks for noticing this. I edited the answer to include __eq__. – Raymond Hettinger Apr 4 '12 at 15:12

In order for you immutable dictionary to be safe, all it needs to do is never to change it's hash. Why don't you just disable __setitem__ as follows:

class ImmutableDict(dict):
    def __setitem__(self, key, value):
        raise Exception("Can't touch this")
    def __hash__(self):
        return hash(tuple(sorted(self.items())))

a = ImmutableDict({ 'a' : 1 })
b = { a : 1 }
print b
print b[a]
a['a'] = 0

The output of the script is:

{{'a': 1}: 1}
1
Traceback (most recent call last):
  File "ex.py", line 11, in <module>
    a['a'] = 0
  File "ex.py", line 3, in __setitem__
    raise Exception("Can't touch this")
Exception: Can't touch this
share|improve this answer
Still not 100% immutable, as object.__setattr__ can bypass this. >>> b = ImmutableDict() >>> b.__hash__() 3527539 >>> object.__setattr__(b, "items", {"bacon": "eggs"}.items) >>> b.__hash__() 28501310 – Darthfett Apr 3 '12 at 17:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.