]> granicus.if.org Git - python/commitdiff
Fix docstrings to mention the correct function
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 16 Feb 2004 01:26:34 +0000 (01:26 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 16 Feb 2004 01:26:34 +0000 (01:26 +0000)
Modules/posixmodule.c

index e51310d64c163ae1b89d24504945b8927ae5ac37..d674986af4c3e0e2afd50e5b26f4823c78cb60bc 100644 (file)
@@ -4456,7 +4456,7 @@ posix_setegid (PyObject *self, PyObject *args)
 
 #ifdef HAVE_SETREUID
 PyDoc_STRVAR(posix_setreuid__doc__,
-"seteuid(ruid, euid)\n\n\
+"setreuid(ruid, euid)\n\n\
 Set the current process's real and effective user ids.");
 
 static PyObject *
@@ -4476,7 +4476,7 @@ posix_setreuid (PyObject *self, PyObject *args)
 
 #ifdef HAVE_SETREGID
 PyDoc_STRVAR(posix_setregid__doc__,
-"setegid(rgid, egid)\n\n\
+"setregid(rgid, egid)\n\n\
 Set the current process's real and effective group ids.");
 
 static PyObject *