summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.