summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-08-07 00:53:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-08-07 00:53:09 (GMT)
commitb37df519c793d40718fda78a9961811fae973f36 (patch)
treeb4a98c5e8e3e070f32a27c36c6f77daeaeb3d141 /Misc
parenta0abb4404a839787bc0791c7ea3b261fcd146652 (diff)
downloadcpython-b37df519c793d40718fda78a9961811fae973f36.zip
cpython-b37df519c793d40718fda78a9961811fae973f36.tar.gz
cpython-b37df519c793d40718fda78a9961811fae973f36.tar.bz2
fix yield from return value on custom iterators (closes #15568)
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 6f7b0fc..d062df4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- Issue #15568: Fix the return value of "yield from" when StopIteration is
+ raised by a custom iterator.
+
- Issue #13119: sys.stdout and sys.stderr are now using "\r\n" newline on
Windows, as Python 2.