]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix docstrings to mention the correct function
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 16 Feb 2004 01:30:49 +0000 (01:30 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 16 Feb 2004 01:30:49 +0000 (01:30 +0000)
Modules/posixmodule.c

index 7201d66212a30119b12ce1d810d206999ae27434..cecd6bb1a131ac72cd91aeb969e5930368c5364b 100644 (file)
@@ -4458,7 +4458,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 *
@@ -4478,7 +4478,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 *