From: Nick Coghlan Date: Sun, 5 Aug 2012 10:43:19 +0000 (+1000) Subject: NEWS entry for previous ipaddress fix X-Git-Tag: v3.3.0b2~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9baa8592cd26e2fd2689d3eeda6e5f7fd3e21a8;p=thirdparty%2FPython%2Fcpython.git NEWS entry for previous ipaddress fix --- diff --git a/Misc/NEWS b/Misc/NEWS index 99aac25c35b3..92a4d798c44b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -77,6 +77,10 @@ Core and Builtins Library ------- +- Issue #15559: To avoid a problematic failure mode when passed to the bytes + constructor, objects in the ipaddress module no longer implement __index__ + (they still implement __int__ as appropriate) + - Issue #15546: Fix handling of pathological input data in the read1() method of the BZ2File, GzipFile and LZMAFile classes.