From: Serhiy Storchaka Date: Sun, 10 Jul 2016 17:51:35 +0000 (+0300) Subject: Issue #27473: Fixed possible integer overflow in bytes and bytearray X-Git-Tag: v3.6.0a3~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca0da9b0a3be265b6e0744bba2391d6ae77f47ab;p=thirdparty%2FPython%2Fcpython.git Issue #27473: Fixed possible integer overflow in bytes and bytearray concatenations. Patch by Xiang Zhang. --- ca0da9b0a3be265b6e0744bba2391d6ae77f47ab diff --cc Misc/NEWS index 6c646b6f4865,7d89264f30e0..de83c786749a --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,11 -10,9 +10,14 @@@ What's New in Python 3.6.0 alpha Core and Builtins ----------------- + - Issue #27473: Fixed possible integer overflow in bytes and bytearray + concatenations. Patch by Xiang Zhang. + +- Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, + SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can + be re-enabled using the "-X showalloccount" option. It now outputs to stderr + instead of stdout. + - Issue #27443: __length_hint__() of bytearray itearator no longer return negative integer for resized bytearray.