diff options
author | Tomas R <tomas.roun8@gmail.com> | 2023-11-15 23:53:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 23:53:38 (GMT) |
commit | a6465605c1417792ec04ced88340cdf104a402b6 (patch) | |
tree | b2e37deeaf10018fe0273052e561d265c9fb498e /Misc | |
parent | 7218bac8c84115a8e9a18a4a8f3146235068facb (diff) | |
download | cpython-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.rst | 1 |
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 |