summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-23 23:11:41 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-23 23:11:41 (GMT)
commitd5a65a77cfdd81ad6945195c88e367fcd9f709c2 (patch)
treeada89cc09c6e26fe8cc9f402840c738cc185bcd7 /Misc
parent97e3f0060c2607ca784a1895e7eb01cda5751eb6 (diff)
downloadcpython-d5a65a77cfdd81ad6945195c88e367fcd9f709c2.zip
cpython-d5a65a77cfdd81ad6945195c88e367fcd9f709c2.tar.gz
cpython-d5a65a77cfdd81ad6945195c88e367fcd9f709c2.tar.bz2
Fix SF bug #689659, 64-bit int and long hash keys incompatible
On a 64-bit machine, a dictionary could contain duplicate int/long keys if the value was > 2**32.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8d5a669..c123689 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,8 @@ What's New in Python 2.3 beta 1?
Core and builtins
-----------------
-TBD
+- On 64-bit systems, a dictionary could contain duplicate long/int keys
+ if the key value was larger than 2**32. See SF bug #689659.
Extension modules
-----------------