]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Tell what the result objects are (based on comment from the list).
authorFred Drake <fdrake@acm.org>
Thu, 19 Aug 1999 17:00:38 +0000 (17:00 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 19 Aug 1999 17:00:38 +0000 (17:00 +0000)
Doc/lib/libpopen2.tex

index 71c4631849e9deec5333bc0065af82b9c2efbbc5..e484d236c1ae6f1e665211a68234bab563f07b14 100644 (file)
@@ -18,14 +18,15 @@ functions:
 
 \begin{funcdesc}{popen2}{cmd\optional{, bufsize}}
 Executes \var{cmd} as a sub-process.  If \var{bufsize} is specified, 
-it specifies the buffer size for the I/O pipes.  Returns
-\code{(\var{child_stdout}, \var{child_stdin})}.
+it specifies the buffer size for the I/O pipes.  Returns the file
+objects \code{(\var{child_stdout}, \var{child_stdin})}.
 \end{funcdesc}
 
 \begin{funcdesc}{popen3}{cmd\optional{, bufsize}}
 Executes \var{cmd} as a sub-process.  If \var{bufsize} is specified, 
-it specifies the buffer size for the I/O pipes.  Returns
-\code{(\var{child_stdout}, \var{child_stdin}, \var{child_stderr})}.
+it specifies the buffer size for the I/O pipes.  Returns the file
+objects \code{(\var{child_stdout}, \var{child_stdin},
+\var{child_stderr})}.
 \end{funcdesc}
 
 The class defining the objects returned by the factory functions is