summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-25 11:19:31 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-25 11:19:31 (GMT)
commita3e9128aba49b99451b19b49982b7b48e4f7ffe6 (patch)
tree768d8e543f44a9747172e84fe97094a42cf6bb0f /Misc
parent2f2dd992a3b73ee320834916e678be7762c06383 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 147b57c..4c95a12 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.