[Python-checkins] r82047 - python/trunk/Modules/posixmodule.c

senthil.kumaran python-checkins at python.org
Thu Jun 17 18:38:34 CEST 2010


Author: senthil.kumaran
Date: Thu Jun 17 18:38:34 2010
New Revision: 82047

Log:
Fix Issue4452 - Incorrect docstring of os.setpgrp



Modified:
   python/trunk/Modules/posixmodule.c

Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Thu Jun 17 18:38:34 2010
@@ -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)


More information about the Python-checkins mailing list