[Python-checkins] r57327 - python/branches/release25-maint/Doc/lib/libpopen2.tex

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


Author: georg.brandl
Date: Thu Aug 23 19:57:53 2007
New Revision: 57327

Modified:
   python/branches/release25-maint/Doc/lib/libpopen2.tex
Log:
Bug #1766421: "return code" vs. "status code".


Modified: python/branches/release25-maint/Doc/lib/libpopen2.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libpopen2.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libpopen2.tex	Thu Aug 23 19:57:53 2007
@@ -85,8 +85,8 @@
 following methods:
 
 \begin{methoddesc}{poll}{}
-Returns \code{-1} if child process hasn't completed yet, or its return 
-code otherwise.
+Returns \code{-1} if child process hasn't completed yet, or its status 
+code (see \method{wait()}) otherwise.
 \end{methoddesc}
 
 \begin{methoddesc}{wait}{}


More information about the Python-checkins mailing list