summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2023-03-03 13:14:30 (GMT)
committerGitHub <noreply@github.com>2023-03-03 13:14:30 (GMT)
commit6c2e052ee07f10a6336bb4de1cef71dbe7d30ee6 (patch)
tree99a2410824d2735cfa40e12ebcc51aad167bd5a1 /Misc/NEWS.d
parent3d88b4e51a08d20c9325491226763a70eff164f8 (diff)
downloadcpython-6c2e052ee07f10a6336bb4de1cef71dbe7d30ee6.zip
cpython-6c2e052ee07f10a6336bb4de1cef71dbe7d30ee6.tar.gz
cpython-6c2e052ee07f10a6336bb4de1cef71dbe7d30ee6.tar.bz2
[3.10] GH-102126: fix deadlock at shutdown when clearing thread stateā€¦ (#102235)
[3.10] GH-102126: fix deadlock at shutdown when clearing thread states (GH-102222). (cherry picked from commit 5f11478ce7fda826d399530af4c5ca96c592f144)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-02-24-17-59-39.gh-issue-102126.HTT8Vc.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-02-24-17-59-39.gh-issue-102126.HTT8Vc.rst b/Misc/NEWS.d/next/Core and Builtins/2023-02-24-17-59-39.gh-issue-102126.HTT8Vc.rst
new file mode 100644
index 0000000..68c4368
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-02-24-17-59-39.gh-issue-102126.HTT8Vc.rst
@@ -0,0 +1 @@
+Fix deadlock at shutdown when clearing thread states if any finalizer tries to acquire the runtime head lock. Patch by Kumar Aditya.