diff options
author | Noah <33094578+coolreader18@users.noreply.github.com> | 2021-08-03 02:17:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 02:17:18 (GMT) |
commit | 83ca46b7784b7357d82ec47b33295e09ed7380cb (patch) | |
tree | 30c63b0b1f0a26e65dbe0954ad7065bdd795c566 /Misc | |
parent | 54f185b6d321a6354aef2b2886c766677f487ecb (diff) | |
download | cpython-83ca46b7784b7357d82ec47b33295e09ed7380cb.zip cpython-83ca46b7784b7357d82ec47b33295e09ed7380cb.tar.gz cpython-83ca46b7784b7357d82ec47b33295e09ed7380cb.tar.bz2 |
closes bpo-39091: Fix segfault when Exception constructor returns non-exception for gen.throw. (#17658)
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-12-21-14-18-32.bpo-39091.dOexgQ.rst | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1300,6 +1300,7 @@ Peter Otten Michael Otteneder Richard Oudkerk Russel Owen +Noah Oxer Joonas Paalasmaa Yaroslav Pankovych Martin Packman diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-12-21-14-18-32.bpo-39091.dOexgQ.rst b/Misc/NEWS.d/next/Core and Builtins/2019-12-21-14-18-32.bpo-39091.dOexgQ.rst new file mode 100644 index 0000000..c3b4e81 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-12-21-14-18-32.bpo-39091.dOexgQ.rst @@ -0,0 +1 @@ +Fix crash when using passing a non-exception to a generator's ``throw()`` method. Patch by Noah Oxer |