diff options
author | Fred Drake <fdrake@acm.org> | 1999-08-19 17:00:38 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-08-19 17:00:38 (GMT) |
commit | 7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e (patch) | |
tree | a00bcec8f26e73cb3ede89df1bd464d099556150 /Doc/lib/libpopen2.tex | |
parent | a8b37ad9fff331b0ba32b27dc83c7af43f6c3fa6 (diff) | |
download | cpython-7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e.zip cpython-7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e.tar.gz cpython-7eba1d8bbe43b3ea5447a0f0b92a593b6faf524e.tar.bz2 |
Tell what the result objects are (based on comment from the list).
Diffstat (limited to 'Doc/lib/libpopen2.tex')
-rw-r--r-- | Doc/lib/libpopen2.tex | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/lib/libpopen2.tex b/Doc/lib/libpopen2.tex index 71c4631..e484d23 100644 --- a/Doc/lib/libpopen2.tex +++ b/Doc/lib/libpopen2.tex @@ -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 |