From: Martin Panter Date: Mon, 18 Jul 2016 08:18:32 +0000 (+0000) Subject: Issue #27507: Merge overflow check from 3.5 X-Git-Tag: v3.6.0a4~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd09f15b691853968ada24dcc8a4b2dc50d8d6f2;p=python Issue #27507: Merge overflow check from 3.5 --- bd09f15b691853968ada24dcc8a4b2dc50d8d6f2 diff --cc Misc/NEWS index 902164d561,115182434b..621f7e5e59 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,10 -10,9 +10,13 @@@ What's New in Python 3.6.0 alpha Core and Builtins ----------------- ++- Issue #27507: Add integer overflow check in bytearray.extend(). Patch by ++ Xiang Zhang. ++ - Issue #27419: Standard __import__() no longer look up "__import__" in globals - or builtins for importing submodules or "from import". Fixed handling an - error of non-string package name. + or builtins for importing submodules or "from import". Fixed a crash if + raise a warning about unabling to resolve package from __spec__ or + __package__. - Issue #27083: Respect the PYTHONCASEOK environment variable under Windows.