summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-04-30 18:15:38 (GMT)
committerNed Deily <nad@acm.org>2012-04-30 18:15:38 (GMT)
commitca9bfe17be987163c4530a7853617cc028854ffb (patch)
treeca3a46d02a4670b769104aed75b74f200fa4a1bc /Doc/library
parentcfc104ee76dfcb592a0c0dcfaf3e65958fcabba4 (diff)
parent2e20968feb2eb720fc7906fb1ceb9e7185412610 (diff)
downloadcpython-ca9bfe17be987163c4530a7853617cc028854ffb.zip
cpython-ca9bfe17be987163c4530a7853617cc028854ffb.tar.gz
cpython-ca9bfe17be987163c4530a7853617cc028854ffb.tar.bz2
Issue #10433: merge
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/os.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 14f9e07..461092d 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -238,6 +238,20 @@ process and user.
Availability: Unix.
+ .. note:: On Mac OS X, :func:`getgroups` behavior differs somewhat from
+ other Unix platforms. If the Python interpreter was built with a
+ deployment target of :const:`10.5` or earlier, :func:`getgroups` returns
+ the list of effective group ids associated with the current user process;
+ this list is limited to a system-defined number of entries, typically 16,
+ and may be modified by calls to :func:`setgroups` if suitably privileged.
+ If built with a deployment target greater than :const:`10.5`,
+ :func:`getgroups` returns the current group access list for the user
+ associated with the effective user id of the process; the group access
+ list may change over the lifetime of the process, it is not affected by
+ calls to :func:`setgroups`, and its length is not limited to 16. The
+ deployment target value, :const:`MACOSX_DEPLOYMENT_TARGET`, can be
+ obtained with :func:`sysconfig.get_config_var`.
+
.. function:: initgroups(username, gid)
@@ -425,6 +439,10 @@ process and user.
Availability: Unix.
+ .. note:: On Mac OS X, the length of *groups* may not exceed the
+ system-defined maximum number of effective group ids, typically 16.
+ See the documentation for :func:`getgroups` for cases where it may not
+ return the same group list set by calling setgroups().
.. function:: setpgrp()