summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-25 02:39:20 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-25 02:39:20 (GMT)
commitb93d8637a6bce5b1b61423dc6c8319fc82a31b13 (patch)
tree2bf465e8c89e54dc4989f126b7b8c20008e455a9 /Misc
parent32d2ce3561088eb0fbb3e63e9fcbc3a90491604a (diff)
downloadcpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.zip
cpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.tar.gz
cpython-b93d8637a6bce5b1b61423dc6c8319fc82a31b13.tar.bz2
Issue #1621: Avoid signed overflow in list and tuple operations
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 80c6573..67ee549 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
- Issue #27581: Don't rely on wrapping for overflow check in
PySequence_Tuple(). Patch by Xiang Zhang.
+- Issue #1621: Avoid signed integer overflow in list and tuple operations.
+ Patch by Xiang Zhang.
+
- Issue #27419: Standard __import__() no longer look up "__import__" in globals
or builtins for importing submodules or "from import". Fixed a crash if
raise a warning about unabling to resolve package from __spec__ or