Kaydet (Commit) 7eba1d8b authored tarafından Fred Drake's avatar Fred Drake

Tell what the result objects are (based on comment from the list).

üst a8b37ad9
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment