summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-04-14 03:52:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-04-14 03:52:01 (GMT)
commitf6e50b4a811477206d1c252a531c31029ea93866 (patch)
treecd2487f0cdeef93232b336fa63c28f0ed42cc2ac /Misc
parent584f5cbf16980f21c58bf7ce7e451e022355fa3d (diff)
downloadcpython-f6e50b4a811477206d1c252a531c31029ea93866.zip
cpython-f6e50b4a811477206d1c252a531c31029ea93866.tar.gz
cpython-f6e50b4a811477206d1c252a531c31029ea93866.tar.bz2
fix sending tuples to custom generator objects with yield from (closes #21209)
Debugged by Victor.
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 6fc6e2f..6e14968 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #21209: Fix sending tuples to custom generator objects with the yield
+ from syntax.
+
- Issue #21134: Fix segfault when str is called on an uninitialized
UnicodeEncodeError, UnicodeDecodeError, or UnicodeTranslateError object.