summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-06-17 16:38:34 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-06-17 16:38:34 (GMT)
commit0d6908b030c21bfb0c093e14837818b5c068512f (patch)
tree8bd7c7ef9429e4b406c87e9b00f850adabb95d57 /Modules
parentdf1cf301c2da740f9271b3ff164d7f0e5cb9082c (diff)
downloadcpython-0d6908b030c21bfb0c093e14837818b5c068512f.zip
cpython-0d6908b030c21bfb0c093e14837818b5c068512f.tar.gz
cpython-0d6908b030c21bfb0c093e14837818b5c068512f.tar.bz2
Fix Issue4452 - Incorrect docstring of os.setpgrp
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 4e586a1..8a23e65 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -3946,7 +3946,7 @@ posix_getpgrp(PyObject *self, PyObject *noargs)
#ifdef HAVE_SETPGRP
PyDoc_STRVAR(posix_setpgrp__doc__,
"setpgrp()\n\n\
-Make this process a session leader.");
+Make this process the process group leader.");
static PyObject *
posix_setpgrp(PyObject *self, PyObject *noargs)