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 casevh
Recipients belopolsky, benjamin.peterson, casevh, georg.brandl, jimjjewett, ked-tao, lemburg, loewis, mark.dickinson, pitrou, rhettinger, skip.montanaro, tim.peters
Date 2010-10-23.03:35:34
SpamBayes Score 0.00010419537
Marked as misclassified No
Message-id <1287804940.89.0.155001814526.issue9778@psf.upfronthosting.co.za>
In-reply-to
Content
I've uploaded a patch against the current svn trunk that:

1) Defines a Py_uhash_t as equivalent to size_t.
2) Correctly defines _PyHASH_MODULUS on Win64.
3) Replaces several PyLong_FromLong with PyLong_FromSsize_t.
4) Change typeobject/wrap_hashfunc to use Py_hash_t instead of long.
5) Change tupleobject/tuplehash to use Py_hast_t instead of long.
6) Change long/double/complex hash functions to use Py_uhash_t instead of unsigned long.
History
Date User Action Args
2010-10-23 03:35:41casevhsetrecipients: + casevh, lemburg, tim.peters, loewis, skip.montanaro, georg.brandl, rhettinger, jimjjewett, mark.dickinson, belopolsky, pitrou, ked-tao, benjamin.peterson
2010-10-23 03:35:40casevhsetmessageid: <1287804940.89.0.155001814526.issue9778@psf.upfronthosting.co.za>
2010-10-23 03:35:37casevhlinkissue9778 messages
2010-10-23 03:35:37casevhcreate