summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-11-21 14:47:24 (GMT)
committerGitHub <noreply@github.com>2024-11-21 14:47:24 (GMT)
commit3c2bd66e21bd8de69a89ebf09ff9d8e78ddfb839 (patch)
treeec73ce44528ad730cfc162c864fa6daffdb7bae2 /Misc
parent60ec854bc297e04718fe13db3605d0465bf8badb (diff)
downloadcpython-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.rst2
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.