Following on from this question, I'm interested to know when is a python object's hash computed?
__init__
time,__hash__()
is called,__hash__()
is called, orMay this vary depending on the type of the object?
Why does hash(-1) == -2
whilst other integers are equal to their hash?
The default hash function ignores the object's attributes and calculates the hash based on the object's id. No matter what changes you make to a0 , its hash will always stay the same. (Though it is possible to define a custom hash function for instances of your A class by implementing a custom __hash__ method.)
What is Hash Method in Python? Hash method in Python is a module that is used to return the hash value of an object. In programming, the hash method is used to return integer values that are used to compare dictionary keys using a dictionary look up feature.
Python hashable In order to perform comparisons, a hashable needs an __eq__ method. Note: Hashable objects which compare equal must have the same hash value. Hashability makes an object usable as a dictionary key and a set member, because these data structures use the hash value internally.
Introduction to the Python hash functionThe hash() function accepts an object and returns the hash value as an integer. When you pass an object to the hash() function, Python will execute the __hash__ special method of the object. It means that when you pass the p1 object to the hash() function: hash(p1)
The hash is generally computed each time it's used, as you can quite easily check yourself (see below). Of course, any particular object is free to cache its hash. For example, CPython strings do this, but tuples don't (see e.g. this rejected bug report for reasons).
The hash value -1 signals an error in CPython. This is because C doesn't have exceptions, so it needs to use the return value. When a Python object's __hash__
returns -1, CPython will actually silently change it to -2.
See for yourself:
class HashTest(object): def __hash__(self): print('Yes! __hash__ was called!') return -1 hash_test = HashTest() # All of these will print out 'Yes! __hash__ was called!': print('__hash__ call #1') hash_test.__hash__() print('__hash__ call #2') hash_test.__hash__() print('hash call #1') hash(hash_test) print('hash call #2') hash(hash_test) print('Dict creation') dct = {hash_test: 0} print('Dict get') dct[hash_test] print('Dict set') dct[hash_test] = 0 print('__hash__ return value:') print(hash_test.__hash__()) # prints -1 print('Actual hash value:') print(hash(hash_test)) # prints -2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With