summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-08-13 18:15:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-08-13 18:15:19 (GMT)
commit3c7e928098d874d82f1069fca640d20afca84c02 (patch)
treeffa38bccd38c29217f7f37656b0a9a523c4bd46c /Misc
parent780199e6a367a98e98ff69750ad24916a0888b9f (diff)
downloadcpython-3c7e928098d874d82f1069fca640d20afca84c02.zip
cpython-3c7e928098d874d82f1069fca640d20afca84c02.tar.gz
cpython-3c7e928098d874d82f1069fca640d20afca84c02.tar.bz2
Issue #12744: Fix inefficient representation of integers
between 2**31 and 2**63 on systems with a 64-bit C "long".
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3c137e0..453529d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -254,6 +254,9 @@ Core and Builtins
Library
-------
+- Issue #12744: Fix inefficient representation of integers between 2**31 and
+ 2**63 on systems with a 64-bit C "long".
+
- Issue #12646: Add an 'eof' attribute to zlib.Decompress, to make it easier to
detect truncated input streams.