[Python-checkins] r76557 - in python/branches/py3k: Doc/library/os.rst

gregory.p.smith python-checkins at python.org
Fri Nov 27 18:54:18 CET 2009


Author: gregory.p.smith
Date: Fri Nov 27 18:54:17 2009
New Revision: 76557

Log:
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
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/os.rst

Modified: python/branches/py3k/Doc/library/os.rst
==============================================================================
--- python/branches/py3k/Doc/library/os.rst	(original)
+++ python/branches/py3k/Doc/library/os.rst	Fri Nov 27 18:54:17 2009
@@ -196,14 +196,14 @@
 
    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.


More information about the Python-checkins mailing list