summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-25 03:31:29 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-25 03:31:29 (GMT)
commit32d2ce3561088eb0fbb3e63e9fcbc3a90491604a (patch)
treeea7cb63a3d1de84135b69470210a8270aae989d0 /Misc
parentc665dfd73e330213008f6422c25b5a115a541776 (diff)
parente8db861f4743fa1702c3119c219c821790e11a9c (diff)
downloadcpython-32d2ce3561088eb0fbb3e63e9fcbc3a90491604a.zip
cpython-32d2ce3561088eb0fbb3e63e9fcbc3a90491604a.tar.gz
cpython-32d2ce3561088eb0fbb3e63e9fcbc3a90491604a.tar.bz2
Issue #27581: Merge overflow fix from 3.5
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 9be9f79..80c6573 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,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 #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