summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-25 02:30:05 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-25 02:30:05 (GMT)
commite8db861f4743fa1702c3119c219c821790e11a9c (patch)
treef8966b7d5b014977ee81aae3b540d7f2c7749643 /Misc
parentaa46bd461c1b585d967b9a9497ea872097017d99 (diff)
downloadcpython-e8db861f4743fa1702c3119c219c821790e11a9c.zip
cpython-e8db861f4743fa1702c3119c219c821790e11a9c.tar.gz
cpython-e8db861f4743fa1702c3119c219c821790e11a9c.tar.bz2
Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()
Patch by Xiang Zhang.
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 a9ebb7c..2e28d90 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
- Issue #27507: Add integer overflow check in bytearray.extend(). Patch by
Xiang Zhang.
+- Issue #27581: Don't rely on wrapping for overflow check in
+ PySequence_Tuple(). Patch by Xiang Zhang.
+
- Issue #27443: __length_hint__() of bytearray iterators no longer return a
negative integer for a resized bytearray.