summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-04-15 15:30:35 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-04-15 15:30:35 (GMT)
commita13b109bc00487182b13c1d02c03e8910dfb9234 (patch)
tree4043e61e11e85fc06117149f879283e09ab99e28 /Misc/NEWS
parent18e3d81f96a592a0307fa41645017483eabcfc51 (diff)
downloadcpython-a13b109bc00487182b13c1d02c03e8910dfb9234.zip
cpython-a13b109bc00487182b13c1d02c03e8910dfb9234.tar.gz
cpython-a13b109bc00487182b13c1d02c03e8910dfb9234.tar.bz2
Issue 13496: Fix bisect.bisect overflow bug for large collections.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b045742..91b0c65 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #13496: Fix potential overflow in bisect.bisect algorithm when applied
+ to a collection of size > sys.maxsize / 2.
+
- Issue #14399: zipfile now recognizes that the archive has been modified even
if only the comment is changed. In addition, the TypeError that results from
trying to set a non-binary value as a comment is now now raised at the time