diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-06 18:14:43 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-06 18:14:43 (GMT) |
commit | e8f706eda77db200728fc436dca20f0591eeec27 (patch) | |
tree | 7f47f633fb9714389be706b84bc3ceb0559aae1a /Misc | |
parent | e16f4dc80ac71bea48c60d4620740d74975024c9 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |