diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-25 02:30:05 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-25 02:30:05 (GMT) |
commit | e8db861f4743fa1702c3119c219c821790e11a9c (patch) | |
tree | f8966b7d5b014977ee81aae3b540d7f2c7749643 /Misc | |
parent | aa46bd461c1b585d967b9a9497ea872097017d99 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |