diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:37:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-12-02 20:37:54 (GMT) |
commit | 30b3b35cbac52719e44d8457fd9a7be09e6edd2c (patch) | |
tree | 595a8572a948775e3dcb4017fa13240dd5baf251 /Misc | |
parent | f2bf0d2a51f305f7df9d6199f580b488f1aa5135 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |