diff options
author | Victor Stinner <vstinner@python.org> | 2024-11-21 14:47:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-21 14:47:24 (GMT) |
commit | 3c2bd66e21bd8de69a89ebf09ff9d8e78ddfb839 (patch) | |
tree | ec73ce44528ad730cfc162c864fa6daffdb7bae2 /Misc | |
parent | 60ec854bc297e04718fe13db3605d0465bf8badb (diff) | |
download | cpython-3c2bd66e21bd8de69a89ebf09ff9d8e78ddfb839.zip cpython-3c2bd66e21bd8de69a89ebf09ff9d8e78ddfb839.tar.gz cpython-3c2bd66e21bd8de69a89ebf09ff9d8e78ddfb839.tar.bz2 |
gh-126316: Make grp.getgrall() thread-safe: add a mutex (#127055)
grpmodule.c is no longer built with the limited C API, since PyMutex
is excluded from the limited C API.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-20-11-37-08.gh-issue-126316.ElkZmE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-20-11-37-08.gh-issue-126316.ElkZmE.rst b/Misc/NEWS.d/next/Library/2024-11-20-11-37-08.gh-issue-126316.ElkZmE.rst new file mode 100644 index 0000000..d643254 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-20-11-37-08.gh-issue-126316.ElkZmE.rst @@ -0,0 +1,2 @@ +:mod:`grp`: Make :func:`grp.getgrall` thread-safe by adding a mutex. Patch +by Victor Stinner. |