[Python-checkins] r85670 - python/branches/py3k/Doc/whatsnew/3.2.rst

skip.montanaro python-checkins at python.org
Mon Oct 18 00:22:25 CEST 2010


Author: skip.montanaro
Date: Mon Oct 18 00:22:24 2010
New Revision: 85670

Log:
Note the resolution of issue 9778.


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Mon Oct 18 00:22:24 2010
@@ -606,6 +606,12 @@
 
   (Contributed by Amaury Forgeot D'Arc; :issue:`9210`.)
 
+* Hash values are now values of a new type, Py_hash_t, which is defined to
+  be the same size as a pointer.  Previously they were of type long, which
+  on some 64-bit operating systems is still only 32 bits long.
+
+  (Contributed by Benjamin Peterson; :issue:`9778`.)
+
 
 Porting to Python 3.2
 =====================


More information about the Python-checkins mailing list