diff options
author | Georg Brandl <georg@python.org> | 2009-11-28 11:11:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-11-28 11:11:50 (GMT) |
commit | 8d8f874c19f9b7ea943d5fea12cbd64633cdb9bc (patch) | |
tree | 4db7ed7ee5ea6b5535dc76ef3d5bb8b8cd5f6d53 /Doc | |
parent | 5afa6d4dcf6e11d2ba4c10fb4b9b860930130df8 (diff) | |
download | cpython-8d8f874c19f9b7ea943d5fea12cbd64633cdb9bc.zip cpython-8d8f874c19f9b7ea943d5fea12cbd64633cdb9bc.tar.gz cpython-8d8f874c19f9b7ea943d5fea12cbd64633cdb9bc.tar.bz2 |
Fix versions and spacing.
Diffstat (limited to 'Doc')
-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 9e7890d..0036845 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -173,19 +173,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:: 2.7 + .. 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:: 2.7 + .. function:: getuid() @@ -264,19 +267,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:: 2.7 + .. function:: setresuid(ruid, euid, suid) Set the current process's real, effective, and saved user ids. Availibility: Unix. - .. versionadded:: 2.7/3.2 + .. versionadded:: 2.7 + .. function:: setreuid(ruid, euid) |