Following on from this question, I'm interested to know when is a python object's hash computed?
- At an instance's
__init__time, - The first time
__hash__()is called, - Every time
__hash__()is called, or - Any other opportunity I might be missing?
I looked through python docs and couldn't dig out this information anywhere. I realise this may vary depending on the type of the object, so let's say for str types.
Also, out of curiosity can anyone enlighten me as to why len(["wtf is so special about the integer -1?" for i in xrange(-1000000,1000000) if hash(i) != i]) != 0 is True?