summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-06 18:14:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-06 18:14:43 (GMT)
commite8f706eda77db200728fc436dca20f0591eeec27 (patch)
tree7f47f633fb9714389be706b84bc3ceb0559aae1a /Misc
parente16f4dc80ac71bea48c60d4620740d74975024c9 (diff)
downloadcpython-e8f706eda77db200728fc436dca20f0591eeec27.zip
cpython-e8f706eda77db200728fc436dca20f0591eeec27.tar.gz
cpython-e8f706eda77db200728fc436dca20f0591eeec27.tar.bz2
Issue #14010: Fix a crash when iterating or deleting deeply nested filters
(builting and in itertools module, i.e. map(), itertools.chain(), etc).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ad86c40..3cbc054 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
+- Issue #14010: Fix a crash when iterating or deleting deeply nested filters
+ (builting and in itertools module, i.e. map(), itertools.chain(), etc).
+
- Issue #17619: Make input() check for Ctrl-C correctly on Windows.
- Issue #17610: Don't rely on non-standard behavior of the C qsort() function.