diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-04-15 15:30:35 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-04-15 15:30:35 (GMT) |
commit | a13b109bc00487182b13c1d02c03e8910dfb9234 (patch) | |
tree | 4043e61e11e85fc06117149f879283e09ab99e28 /Misc | |
parent | 18e3d81f96a592a0307fa41645017483eabcfc51 (diff) | |
download | cpython-a13b109bc00487182b13c1d02c03e8910dfb9234.zip cpython-a13b109bc00487182b13c1d02c03e8910dfb9234.tar.gz cpython-a13b109bc00487182b13c1d02c03e8910dfb9234.tar.bz2 |
Issue 13496: Fix bisect.bisect overflow bug for large collections.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |