From: Martin Panter Date: Mon, 11 Jul 2016 12:54:44 +0000 (+0000) Subject: Issue #23804: Merge spelling and NEWS fixes from 3.5 X-Git-Tag: v3.6.0a3~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=702f4f5d6fdb1a49222bb1e70866717f34c3b847;p=thirdparty%2FPython%2Fcpython.git Issue #23804: Merge spelling and NEWS fixes from 3.5 --- 702f4f5d6fdb1a49222bb1e70866717f34c3b847 diff --cc Misc/NEWS index 01a9c6600216,b7ad75b2628e..c680eaa60b8c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -13,17 -13,9 +13,17 @@@ Core and Builtin - 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. + - Issue #27443: __length_hint__() of bytearray iterators no longer return a + negative integer for a resized bytearray. +- Issue #27007: The fromhex() class methods of bytes and bytearray subclasses + now return an instance of corresponding subclass. + Library -------