This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author barry
Recipients barry, docs@python
Date 2013-07-13.18:34:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373740485.69.0.943591579445.issue18440@psf.upfronthosting.co.za>
In-reply-to
Content
If you have a custom object that implements __hash__() and it returns a value wider than Py_ssize_t, built-in hash() on the object will truncate information.  This is because hash() takes the value returned by obj.__hash__() and coerces it through PyLong_FromSsize_t().  This can cause object hashes to have different values on 64bit and 32bit machines, e.g. on 64bit Linux where Py_ssize_t is 8 bytes wide vs. 32bit Linux where it is 4 bytes wide.

This may be perfectly reasonable from an implementation point of (ref: issue9778) but it is surprising since it is not documented.

This size constraint on object hashes should be documented.

from ctypes import *

class Foo:
    def __hash__(self):
        return 0x1332a6000000000

print(hash(Foo()), sizeof(c_ssize_t))

---64bit Ubuntu 13.10---
$ python3.3 hashex.py
86459409655398400 8

---32bit Ubuntu 13.10---
$ python3 hashex.py
40260800 4
History
Date User Action Args
2013-07-13 18:34:45barrysetrecipients: + barry, docs@python
2013-07-13 18:34:45barrysetmessageid: <1373740485.69.0.943591579445.issue18440@psf.upfronthosting.co.za>
2013-07-13 18:34:45barrylinkissue18440 messages
2013-07-13 18:34:45barrycreate