From: Serhiy Storchaka Date: Sun, 3 Jul 2016 11:42:17 +0000 (+0300) Subject: Issue #27443: __length_hint__() of bytearray itearator no longer return X-Git-Tag: v3.6.0a3~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c94d10a193ffdaad9d3b7c2376d9f4de776575f;p=python Issue #27443: __length_hint__() of bytearray itearator no longer return negative integer for resized bytearray. --- 6c94d10a193ffdaad9d3b7c2376d9f4de776575f diff --cc Misc/NEWS index 7dc5887dde,a04212cd68..014ac547c1 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,9 +10,12 @@@ What's New in Python 3.6.0 alpha Core and Builtins ----------------- + - Issue #27443: __length_hint__() of bytearray itearator no longer return + negative integer for resized bytearray. + +- Issue #27007: The fromhex() class methods of bytes and bytearray subclasses + now return an instance of corresponding subclass. + Library -------