diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-17 16:51:08 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-17 16:51:08 (GMT) |
commit | 28fdadb7684c9386bf3ac051fa42d45656148e67 (patch) | |
tree | dfbcf3a1d604eb48f3e2845c5dfa399f097422aa /Modules/posixmodule.c | |
parent | 0217eb8cbd4444f23d399f673697fcd751e92214 (diff) | |
download | cpython-28fdadb7684c9386bf3ac051fa42d45656148e67.zip cpython-28fdadb7684c9386bf3ac051fa42d45656148e67.tar.gz cpython-28fdadb7684c9386bf3ac051fa42d45656148e67.tar.bz2 |
Merged revisions 82049 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r82049 | senthil.kumaran | 2010-06-17 22:18:06 +0530 (Thu, 17 Jun 2010) | 9 lines
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 590a47b..65a0a5e 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4059,7 +4059,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) |