diff options
author | Georg Brandl <georg@python.org> | 2009-11-28 11:12:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-11-28 11:12:26 (GMT) |
commit | 1b83a45f90ca8ca7c525f122ed3078dc6c59c44a (patch) | |
tree | 46ae774872dcc69b5be7f37729e283cf3cfee1a1 | |
parent | cf02c6a4cee3cf027d90e81d048fc7638a55066a (diff) | |
download | cpython-1b83a45f90ca8ca7c525f122ed3078dc6c59c44a.zip cpython-1b83a45f90ca8ca7c525f122ed3078dc6c59c44a.tar.gz cpython-1b83a45f90ca8ca7c525f122ed3078dc6c59c44a.tar.bz2 |
Merged revisions 76559 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76559 | georg.brandl | 2009-11-28 12:11:50 +0100 (Sa, 28 Nov 2009) | 1 line
Fix versions and spacing.
........
-rw-r--r-- | Doc/library/os.rst | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 42d28fa..29e7899 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -196,19 +196,22 @@ process and user. Return the parent's process id. Availability: Unix. + .. function:: getresuid() Return a tuple (ruid, euid, suid) denoting the current process's real, effective, and saved user ids. Availability: Unix. - .. versionadded:: 2.7/3.2 + .. versionadded:: 3.2 + .. function:: getresgid() Return a tuple (rgid, egid, sgid) denoting the current process's real, effective, and saved user ids. Availability: Unix. - .. versionadded:: 2.7/3.2 + .. versionadded:: 3.2 + .. function:: getuid() @@ -284,19 +287,22 @@ process and user. Set the current process's real and effective group ids. Availability: Unix. + .. function:: setresgid(rgid, egid, sgid) Set the current process's real, effective, and saved group ids. Availability: Unix. - .. versionadded:: 2.7/3.2 + .. versionadded:: 3.2 + .. function:: setresuid(ruid, euid, suid) Set the current process's real, effective, and saved user ids. Availibility: Unix. - .. versionadded:: 2.7/3.2 + .. versionadded:: 3.2 + .. function:: setreuid(ruid, euid) |