From: Gregory P. Smith Date: Fri, 27 Nov 2009 17:51:12 +0000 (+0000) Subject: fix typo X-Git-Tag: v2.7a1~31 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=761ae0b8cc73c77d8f398f3c6ae5018b77198335;p=thirdparty%2FPython%2Fcpython.git fix typo --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 70e9a342224a..9e7890d880d7 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.