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
........
This commit is contained in:
Senthil Kumaran 2010-06-17 16:48:06 +00:00
parent 4155f97699
commit 684760a148
1 changed files with 1 additions and 1 deletions

View File

@ -3925,7 +3925,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)