commit | 6a65f85e79db20f16a7f18873322984f5b1333ee | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@mad-scientist.com> | Mon Mar 01 05:43:43 2010 +0000 |
committer | Gregory P. Smith <greg@mad-scientist.com> | Mon Mar 01 05:43:43 2010 +0000 |
tree | d53e74421ac7c76f66770054dea7834b25ae7339 | |
parent | 3c699d334a1f6f413326bd8a3cbcd1a7a4b4a93d [diff] [blame] |
Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1 parameter on some platforms such as OS X.
diff --git a/Misc/NEWS b/Misc/NEWS index b110559..319d128 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -93,6 +93,9 @@ thread could raise an incorrect RuntimeError about not holding the import lock. The import lock is now reinitialized after fork. +- Issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1 + parameter on some platforms such as OS X. + Tests -----