diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-08-10 09:37:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 09:37:25 (GMT) |
commit | d5c217475c4957a8084ac3f92ae012ece5edc7cb (patch) | |
tree | 25ebdc594d9cc6ca6e7ca2084b7680d8695db7f0 /Misc | |
parent | 6b37d0d5300813de31d66df1c77dad7e1027e4d8 (diff) | |
download | cpython-d5c217475c4957a8084ac3f92ae012ece5edc7cb.zip cpython-d5c217475c4957a8084ac3f92ae012ece5edc7cb.tar.gz cpython-d5c217475c4957a8084ac3f92ae012ece5edc7cb.tar.bz2 |
bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle in its context chain (GH-27626)
Co-authored-by: Dennis Sweeney 36520290+sweeneyde@users.noreply.github.com
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-08-07-21-39-19.bpo-25782.B22lMx.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-08-07-21-39-19.bpo-25782.B22lMx.rst b/Misc/NEWS.d/next/Core and Builtins/2021-08-07-21-39-19.bpo-25782.B22lMx.rst new file mode 100644 index 0000000..1c52059 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-08-07-21-39-19.bpo-25782.B22lMx.rst @@ -0,0 +1 @@ +Fix bug where ``PyErr_SetObject`` hangs when the current exception has a cycle in its context chain.
\ No newline at end of file |