summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2010-10-17 22:22:24 (GMT)
committerSkip Montanaro <skip@pobox.com>2010-10-17 22:22:24 (GMT)
commit961aaf5cfa2f5585ab72f940d3329d9f425cbe34 (patch)
tree84625aba0ce94a68ff6204178e4b8f6b1e2f43cb
parente7dfeeb889ef1f19fc4c26bab843e913ee67e40d (diff)
downloadcpython-961aaf5cfa2f5585ab72f940d3329d9f425cbe34.zip
cpython-961aaf5cfa2f5585ab72f940d3329d9f425cbe34.tar.gz
cpython-961aaf5cfa2f5585ab72f940d3329d9f425cbe34.tar.bz2
Note the resolution of issue 9778.
-rw-r--r--Doc/whatsnew/3.2.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 0d9b968..c16fe87 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -606,6 +606,12 @@ Changes to Python's build process and to the C API include:
(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
=====================