diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 11:19:31 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 11:19:31 (GMT) |
commit | a3e9128aba49b99451b19b49982b7b48e4f7ffe6 (patch) | |
tree | 768d8e543f44a9747172e84fe97094a42cf6bb0f /Misc | |
parent | 2f2dd992a3b73ee320834916e678be7762c06383 (diff) | |
download | cpython-a3e9128aba49b99451b19b49982b7b48e4f7ffe6.zip cpython-a3e9128aba49b99451b19b49982b7b48e4f7ffe6.tar.gz cpython-a3e9128aba49b99451b19b49982b7b48e4f7ffe6.tar.bz2 |
Issue #13454: Fix a crash when deleting an iterator created by itertools.tee()
if all other iterators were very advanced before.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -202,6 +202,9 @@ Core and Builtins Library ------- +- Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() + if all other iterators were very advanced before. + - Issue #12411: Fix to cgi.parse_multipart to correctly use bytes boundaries and bytes data. Patch by Jonas Wagner. |