summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-09-09 08:47:14 (GMT)
committerGitHub <noreply@github.com>2019-09-09 08:47:14 (GMT)
commit526a01467b3277f9fcf7f91e66c23321caa1245d (patch)
tree57d20cb52a4cd5e78a59403e278418908e9cd5a7 /Misc
parent918b468b7d5ebf1ec5e604cb0d99605cee38d983 (diff)
downloadcpython-526a01467b3277f9fcf7f91e66c23321caa1245d.zip
cpython-526a01467b3277f9fcf7f91e66c23321caa1245d.tar.gz
cpython-526a01467b3277f9fcf7f91e66c23321caa1245d.tar.bz2
bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)
RuntimeError is now raised in this case.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-31-01-52-59.bpo-34410.7KbWZQ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-31-01-52-59.bpo-34410.7KbWZQ.rst b/Misc/NEWS.d/next/Library/2019-08-31-01-52-59.bpo-34410.7KbWZQ.rst
new file mode 100644
index 0000000..64e778e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-31-01-52-59.bpo-34410.7KbWZQ.rst
@@ -0,0 +1,2 @@
+Fixed a crash in the :func:`tee` iterator when re-enter it. RuntimeError is
+now raised in this case.