[Python-checkins] r79180 - in python/branches/py3k: Doc/library/subprocess.rst

georg.brandl python-checkins at python.org
Sun Mar 21 10:50:49 CET 2010


Author: georg.brandl
Date: Sun Mar 21 10:50:49 2010
New Revision: 79180

Log:
Merged revisions 79178 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79178 | georg.brandl | 2010-03-21 10:28:16 +0100 (So, 21 Mär 2010) | 1 line
  
  Clarify that for shell=True, the shell PID will be the child PID.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/subprocess.rst

Modified: python/branches/py3k/Doc/library/subprocess.rst
==============================================================================
--- python/branches/py3k/Doc/library/subprocess.rst	(original)
+++ python/branches/py3k/Doc/library/subprocess.rst	Sun Mar 21 10:50:49 2010
@@ -423,6 +423,9 @@
 
    The process ID of the child process.
 
+   Note that if you set the *shell* argument to ``True``, this is the process ID
+   of the spawned shell.
+
 
 .. attribute:: Popen.returncode
 


More information about the Python-checkins mailing list