[Python-checkins] r82050 - in python/branches/release31-maint: Modules/posixmodule.c

senthil.kumaran python-checkins at python.org
Thu Jun 17 18:51:08 CEST 2010


Author: senthil.kumaran
Date: Thu Jun 17 18:51:08 2010
New Revision: 82050

Log:
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
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Modules/posixmodule.c

Modified: python/branches/release31-maint/Modules/posixmodule.c
==============================================================================
--- python/branches/release31-maint/Modules/posixmodule.c	(original)
+++ python/branches/release31-maint/Modules/posixmodule.c	Thu Jun 17 18:51:08 2010
@@ -4059,7 +4059,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