summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTomas R <tomas.roun8@gmail.com>2023-11-15 23:53:38 (GMT)
committerGitHub <noreply@github.com>2023-11-15 23:53:38 (GMT)
commita6465605c1417792ec04ced88340cdf104a402b6 (patch)
treeb2e37deeaf10018fe0273052e561d265c9fb498e /Misc
parent7218bac8c84115a8e9a18a4a8f3146235068facb (diff)
downloadcpython-a6465605c1417792ec04ced88340cdf104a402b6.zip
cpython-a6465605c1417792ec04ced88340cdf104a402b6.tar.gz
cpython-a6465605c1417792ec04ced88340cdf104a402b6.tar.bz2
gh-111916: Make hashlib related modules thread-safe without the GIL (#111981)
Always use an individual lock on hash objects when in free-threaded builds. Fixes #111916
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-11-14-22-12-11.gh-issue-111916.ZGCayL.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-11-14-22-12-11.gh-issue-111916.ZGCayL.rst b/Misc/NEWS.d/next/Core and Builtins/2023-11-14-22-12-11.gh-issue-111916.ZGCayL.rst
new file mode 100644
index 0000000..b381482
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-11-14-22-12-11.gh-issue-111916.ZGCayL.rst
@@ -0,0 +1 @@
+Make hashlib related modules thread-safe without the GIL