@@ -314,19 +314,19 @@ \subsection{File Object Creation \label{os-newstreams}}
314314objects should be opened in binary or text mode. The default value
315315for \var {mode} is \code {'t'}.
316316
317- \begin {funcdesc }{popen2}{cmd\optional {, bufsize \optional {, mode }}}
317+ \begin {funcdesc }{popen2}{cmd\optional {, mode \optional {, bufsize }}}
318318Executes \var {cmd} as a sub-process. Returns the file objects
319319\code {(\var {child_stdin}, \var {child_stdout})}.
320320\versionadded {2.0}
321321\end {funcdesc }
322322
323- \begin {funcdesc }{popen3}{cmd\optional {, bufsize \optional {, mode }}}
323+ \begin {funcdesc }{popen3}{cmd\optional {, mode \optional {, bufsize }}}
324324Executes \var {cmd} as a sub-process. Returns the file objects
325325\code {(\var {child_stdin}, \var {child_stdout}, \var {child_stderr})}.
326326\versionadded {2.0}
327327\end {funcdesc }
328328
329- \begin {funcdesc }{popen4}{cmd\optional {, bufsize \optional {, mode }}}
329+ \begin {funcdesc }{popen4}{cmd\optional {, mode \optional {, bufsize }}}
330330Executes \var {cmd} as a sub-process. Returns the file objects
331331\code {(\var {child_stdin}, \var {child_stdout_and_stderr})}.
332332\versionadded {2.0}
@@ -928,6 +928,14 @@ \subsection{Process Management \label{os-process}}
928928Availability: \UNIX {}.
929929\end {funcdesc }
930930
931+ \begin {funcdescni }{popen}{\unspecified }
932+ \funclineni {popen2}{\unspecified }
933+ \funclineni {popen3}{\unspecified }
934+ \funclineni {popen4}{\unspecified }
935+ Run child processes, returning opened pipes for communications. These
936+ functions are described in section \ref {os-newstreams }.
937+ \end {funcdescni }
938+
931939\begin {funcdesc }{spawnv}{mode, path, args}
932940Execute the program \var {path} in a new process, passing the arguments
933941specified in \var {args} as command-line parameters. \var {args} may be
0 commit comments