commit | 0d6908b030c21bfb0c093e14837818b5c068512f | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Thu Jun 17 16:38:34 2010 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Thu Jun 17 16:38:34 2010 +0000 |
tree | 8bd7c7ef9429e4b406c87e9b00f850adabb95d57 | |
parent | df1cf301c2da740f9271b3ff164d7f0e5cb9082c [diff] |
Fix Issue4452 - Incorrect docstring of os.setpgrp
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 @@ #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)