[Python-checkins] r57326 - python/trunk/Doc/library/popen2.rst

georg.brandl python-checkins at python.org
Thu Aug 23 19:57:05 CEST 2007


Author: georg.brandl
Date: Thu Aug 23 19:57:05 2007
New Revision: 57326

Modified:
   python/trunk/Doc/library/popen2.rst
Log:
Bug #1766421: "return code" vs. "status code".


Modified: python/trunk/Doc/library/popen2.rst
==============================================================================
--- python/trunk/Doc/library/popen2.rst	(original)
+++ python/trunk/Doc/library/popen2.rst	Thu Aug 23 19:57:05 2007
@@ -95,8 +95,8 @@
 
 .. method:: Popen3.poll()
 
-   Returns ``-1`` if child process hasn't completed yet, or its return  code
-   otherwise.
+   Returns ``-1`` if child process hasn't completed yet, or its status code
+   (see :meth:`wait`) otherwise.
 
 
 .. method:: Popen3.wait()


More information about the Python-checkins mailing list