[Python-checkins] r84530 - in python/branches/py3k: Doc/library/os.rst Modules/posixmodule.c

georg.brandl python-checkins at python.org
Sun Sep 5 19:07:12 CEST 2010


Author: georg.brandl
Date: Sun Sep  5 19:07:12 2010
New Revision: 84530

Log:
#9747: fix copy-paste error in getresgid() doc.

Modified:
   python/branches/py3k/Doc/library/os.rst
   python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Doc/library/os.rst
==============================================================================
--- python/branches/py3k/Doc/library/os.rst	(original)
+++ python/branches/py3k/Doc/library/os.rst	Sun Sep  5 19:07:12 2010
@@ -299,7 +299,7 @@
 .. function:: getresgid()
 
    Return a tuple (rgid, egid, sgid) denoting the current process's
-   real, effective, and saved user ids.
+   real, effective, and saved group ids.
 
    Availability: Unix.
 

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Sun Sep  5 19:07:12 2010
@@ -7600,7 +7600,7 @@
 #ifdef HAVE_GETRESGID
 PyDoc_STRVAR(posix_getresgid__doc__,
 "getresgid() -> (rgid, egid, sgid)\n\n\
-Get tuple of the current process's real, effective, and saved user ids.");
+Get tuple of the current process's real, effective, and saved group ids.");
 
 static PyObject*
 posix_getresgid (PyObject *self, PyObject *noargs)


More information about the Python-checkins mailing list