summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-11-29 15:57:11 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-11-29 15:57:11 (GMT)
commitdaf28293e1a422efa222a493b378b4614e7c5512 (patch)
treeec7cb546f33e3ea920ec3a2d8ee94d6a5447e66f
parent139891ba82b37631d01c33397f0bbde7d0adcc1b (diff)
parent343d530d67542d2272f2f72afff8a476bb7f9e8b (diff)
downloadcpython-daf28293e1a422efa222a493b378b4614e7c5512.zip
cpython-daf28293e1a422efa222a493b378b4614e7c5512.tar.gz
cpython-daf28293e1a422efa222a493b378b4614e7c5512.tar.bz2
merge 3.2
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 90aee93..875f83d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,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.