summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-11-27 17:54:17 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-11-27 17:54:17 (GMT)
commitcf02c6a4cee3cf027d90e81d048fc7638a55066a (patch)
tree495935d4a31dc98b04f6567dc2905b7b2ef465e0 /Doc
parent7aed61ae466570fc9fbb8cb26c31e02c1a57e82d (diff)
downloadcpython-cf02c6a4cee3cf027d90e81d048fc7638a55066a.zip
cpython-cf02c6a4cee3cf027d90e81d048fc7638a55066a.tar.gz
cpython-cf02c6a4cee3cf027d90e81d048fc7638a55066a.tar.bz2
Merged revisions 76556 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76556 | gregory.p.smith | 2009-11-27 09:51:12 -0800 (Fri, 27 Nov 2009) | 2 lines fix typo ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/os.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 588a752..42d28fa 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -196,14 +196,14 @@ process and user.
Return the parent's process id. Availability: Unix.
-.. function:: getresgid()
+.. 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
-.. function:: getresuid()
+.. function:: getresgid()
Return a tuple (rgid, egid, sgid) denoting the current process's
real, effective, and saved user ids. Availability: Unix.