summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2004-02-16 01:26:34 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2004-02-16 01:26:34 (GMT)
commit94f1d71d7037fd70a771c6a269c81051d510b904 (patch)
tree9425ca2d338e95bcf7f92c71e750f2e60a14089a /Modules
parentd3c810ed31c4f113501c43a9ea792523309e5abc (diff)
downloadcpython-94f1d71d7037fd70a771c6a269c81051d510b904.zip
cpython-94f1d71d7037fd70a771c6a269c81051d510b904.tar.gz
cpython-94f1d71d7037fd70a771c6a269c81051d510b904.tar.bz2
Fix docstrings to mention the correct function
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index e51310d..d674986 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -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 *