summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-03-10 16:22:34 (GMT)
committerGitHub <noreply@github.com>2018-03-10 16:22:34 (GMT)
commit24d3201eb7f0b39a7eaf2a5b2a2ceca10ad1f8eb (patch)
tree873738d8e87c4929a165e5541e11b29a69dd1e99 /Misc
parent5e80a71ab67045fecec46573a1892e240b569ace (diff)
downloadcpython-24d3201eb7f0b39a7eaf2a5b2a2ceca10ad1f8eb.zip
cpython-24d3201eb7f0b39a7eaf2a5b2a2ceca10ad1f8eb.tar.gz
cpython-24d3201eb7f0b39a7eaf2a5b2a2ceca10ad1f8eb.tar.bz2
bpo-33041: Fixed bytecode generation for "async for" with a complex target. (#6052)
A StopAsyncIteration raised on assigning or unpacking will be now propagated instead of stopping the iteration.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-03-10-15-16-40.bpo-33041.-ak5Fk.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-03-10-15-16-40.bpo-33041.-ak5Fk.rst b/Misc/NEWS.d/next/Core and Builtins/2018-03-10-15-16-40.bpo-33041.-ak5Fk.rst
new file mode 100644
index 0000000..af9ccfd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-03-10-15-16-40.bpo-33041.-ak5Fk.rst
@@ -0,0 +1,3 @@
+Fixed bytecode generation for "async for" with a complex target. A
+StopAsyncIteration raised on assigning or unpacking will be now propagated
+instead of stopping the iteration.