summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorVincent Michel <vxgmichel@gmail.com>2019-11-19 13:53:52 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-11-19 13:53:52 (GMT)
commit8e0de2a4808d7c2f4adedabff89ee64e0338790a (patch)
tree745ce6bba5ebdb82a1ab7d739b218674fe29b35b /Misc/NEWS.d/next
parentf25875af425a3480e557aaedf49c3bb867bcbd5d (diff)
downloadcpython-8e0de2a4808d7c2f4adedabff89ee64e0338790a.zip
cpython-8e0de2a4808d7c2f4adedabff89ee64e0338790a.tar.gz
cpython-8e0de2a4808d7c2f4adedabff89ee64e0338790a.tar.bz2
bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)
Ignore `GeneratorExit` exceptions when throwing an exception into the `aclose` coroutine of an asynchronous generator. https://bugs.python.org/issue35409
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-07-13-18-01-13.bpo-35409.ozbcsR.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-07-13-18-01-13.bpo-35409.ozbcsR.rst b/Misc/NEWS.d/next/Core and Builtins/2019-07-13-18-01-13.bpo-35409.ozbcsR.rst
new file mode 100644
index 0000000..0f35a91
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-07-13-18-01-13.bpo-35409.ozbcsR.rst
@@ -0,0 +1,2 @@
+Ignore GeneratorExit exceptions when throwing an exception into the aclose
+coroutine of an asynchronous generator.