diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-08-19 19:43:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 19:43:00 (GMT) |
commit | e0d54a4a799dae4ebdd72a16bcf287ed62ae2972 (patch) | |
tree | cba0d40312a87597a6ac68ebe1b1051a45b8617d /Misc | |
parent | 822955c16654c22c10a993f5a94bbb68b857a150 (diff) | |
download | cpython-e0d54a4a799dae4ebdd72a16bcf287ed62ae2972.zip cpython-e0d54a4a799dae4ebdd72a16bcf287ed62ae2972.tar.gz cpython-e0d54a4a799dae4ebdd72a16bcf287ed62ae2972.tar.bz2 |
GH-96071: fix deadlock in PyGILState_Ensure (GH-96124)
Alternative of #96107
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-08-19-06-51-17.gh-issue-96071.mVgPAo.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-08-19-06-51-17.gh-issue-96071.mVgPAo.rst b/Misc/NEWS.d/next/Core and Builtins/2022-08-19-06-51-17.gh-issue-96071.mVgPAo.rst new file mode 100644 index 0000000..37653ff --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-08-19-06-51-17.gh-issue-96071.mVgPAo.rst @@ -0,0 +1 @@ +Fix a deadlock in :c:func:`PyGILState_Ensure` when allocating new thread state. Patch by Kumar Aditya. |