I am trying to understand python hash function under the hood. I created a custom class where all instances return the same hash value.
class C(object):
def __hash__(self):
return 42
I just assumed that only one instance of the above class can be in a set at any time, but in fact a set can have multiple elements with same hash.
c, d = C(), C()
x = {c: 'c', d: 'd'}
print x
# {<__main__.C object at 0x83e98cc>:'c', <__main__.C object at 0x83e98ec>:'d'}
# note that the dict has 2 elements
I experimented a little more and found that if I override the __eq__ method such that all the instances of the class compare equal, then the set only allows one instance.
class D(C):
def __eq__(self, other):
return hash(self) == hash(other)
p, q = D(), D()
y = {p:'p', q:'q'}
print y
# {<__main__.D object at 0x8817acc>]: 'q'}
# note that the dict has only 1 element
So I am curious to know how can a dict have multiple elements with same hash. Thanks!
Note: Edited the question to give example of dict (instead of set) because all the discussion in the answers is about dicts. But the same applies to sets; sets can also have multiple elements with same hash value.