summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-12-02 20:37:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-12-02 20:37:54 (GMT)
commit30b3b35cbac52719e44d8457fd9a7be09e6edd2c (patch)
tree595a8572a948775e3dcb4017fa13240dd5baf251 /Misc
parentf2bf0d2a51f305f7df9d6199f580b488f1aa5135 (diff)
downloadcpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.zip
cpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.tar.gz
cpython-30b3b35cbac52719e44d8457fd9a7be09e6edd2c.tar.bz2
Issue #7333: The `posix` module gains an `initgroups()` function providing
access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8b56e2..92f9026 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -490,6 +490,10 @@ Core and Builtins
Library
-------
+- Issue #7333: The `posix` module gains an `initgroups()` function providing
+ access to the initgroups(3) C library call on Unix systems which implement
+ it. Patch by Jean-Paul Calderone.
+
- Issue #7408: Fixed distutils.tests.sdist so it doesn't check for group
ownership when the group is not forced, because the group may be different
from the user's group and inherit from its container when the test is run.