summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-11-27 17:51:12 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-11-27 17:51:12 (GMT)
commit761ae0b8cc73c77d8f398f3c6ae5018b77198335 (patch)
tree00546e8d5131ba86af5ef61c86fccfe5cd4b1602
parent01801d1f088ca95c06a976dcd822d390d74b47d2 (diff)
downloadcpython-761ae0b8cc73c77d8f398f3c6ae5018b77198335.zip
cpython-761ae0b8cc73c77d8f398f3c6ae5018b77198335.tar.gz
cpython-761ae0b8cc73c77d8f398f3c6ae5018b77198335.tar.bz2
fix typo
-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 70e9a34..9e7890d 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -173,14 +173,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.