summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-11-29 15:57:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-11-29 15:57:01 (GMT)
commit256aaf7b477a02d5098553695054a4bd6fdb7e44 (patch)
tree95a56d804705c10dfc4652578350356b9ab1f8ac
parented10a30ed64a97f23b7916a5ea4a23ac678dd1f8 (diff)
downloadcpython-256aaf7b477a02d5098553695054a4bd6fdb7e44.zip
cpython-256aaf7b477a02d5098553695054a4bd6fdb7e44.tar.gz
cpython-256aaf7b477a02d5098553695054a4bd6fdb7e44.tar.bz2
add changelog
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 55bed50..a7d2da6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -154,6 +154,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 #1160: Fix compiling large regular expressions on UCS2 builds.