diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-17 16:38:34 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-17 16:38:34 (GMT) |
commit | 0d6908b030c21bfb0c093e14837818b5c068512f (patch) | |
tree | 8bd7c7ef9429e4b406c87e9b00f850adabb95d57 | |
parent | df1cf301c2da740f9271b3ff164d7f0e5cb9082c (diff) | |
download | cpython-0d6908b030c21bfb0c093e14837818b5c068512f.zip cpython-0d6908b030c21bfb0c093e14837818b5c068512f.tar.gz cpython-0d6908b030c21bfb0c093e14837818b5c068512f.tar.bz2 |
Fix Issue4452 - Incorrect docstring of os.setpgrp
-rw-r--r-- | Modules/posixmodule.c | 2 |
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) |