summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-06-17 16:41:47 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-06-17 16:41:47 (GMT)
commit4fb51b4d05e2214b83f360b7fdb814397790e7fa (patch)
tree71d65a2794374e96d9bf40ecb2fb8ade858225db /Modules/posixmodule.c
parentaf85f4675bc2d160a8e47659ecbcbddf2d2e4bd1 (diff)
downloadcpython-4fb51b4d05e2214b83f360b7fdb814397790e7fa.zip
cpython-4fb51b4d05e2214b83f360b7fdb814397790e7fa.tar.gz
cpython-4fb51b4d05e2214b83f360b7fdb814397790e7fa.tar.bz2
Merged revisions 82047 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r82047 | senthil.kumaran | 2010-06-17 22:08:34 +0530 (Thu, 17 Jun 2010) | 3 lines Fix Issue4452 - Incorrect docstring of os.setpgrp ........
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index eb93ae0..46ee716 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -3940,7 +3940,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)