summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-21 17:50:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-21 17:50:25 (GMT)
commit4faf5c5655277cec99b2b11f7fe34e73d3ae28b9 (patch)
treeaefe265087e545e5277383bf21d90ced3cdf4022 /Misc/NEWS
parentcbfe07e06cb460986b37604bc32dad407cb33f62 (diff)
downloadcpython-4faf5c5655277cec99b2b11f7fe34e73d3ae28b9.zip
cpython-4faf5c5655277cec99b2b11f7fe34e73d3ae28b9.tar.gz
cpython-4faf5c5655277cec99b2b11f7fe34e73d3ae28b9.tar.bz2
Issue #23985: Fixed integer overflow in iterator object. Patch by
Clement Rouault.
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 94ea12b..edd6aaa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #23985: Fixed integer overflow in iterator object. Patch by
+ Clement Rouault.
+
- Issue #23985: Fix a possible buffer overrun when deleting a slice from
the front of a bytearray and then appending some other bytes data.