From: Benjamin Peterson Date: Thu, 29 Nov 2012 15:57:01 +0000 (-0500) Subject: add changelog X-Git-Tag: v3.2.4rc1~303 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=343d530d67542d2272f2f72afff8a476bb7f9e8b;p=thirdparty%2FPython%2Fcpython.git add changelog --- diff --git a/Misc/NEWS b/Misc/NEWS index 39eed9107927..b984b9984bf2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -167,6 +167,10 @@ Core and Builtins Library ------- +- Issue #16573: In 2to3, treat enumerate() like a consuming call, so superfluous + list() calls aren't added to filter(), map(), and zip() which are directly + passed enumerate(). + - Issue #16476: Fix json.tool to avoid including trailing whitespace. - Issue #16549: Make json.tool work again on Python 3 and add tests.