Document the "pid" attribute of the Popen3 class.

Use memberdesc instead of datadesc to document object attributes.
This gets the index right.
This commit is contained in:
Fred Drake 1999-05-27 17:50:59 +00:00
parent a7ce52b03a
commit 3aa70d63b9
1 changed files with 12 additions and 9 deletions

View File

@ -1,5 +1,5 @@
\section{\module{popen2} --- \section{\module{popen2} ---
Subprocesses with accessible standard I/O streams} Subprocesses with accessible I/O streams}
\declaremodule{standard}{popen2} \declaremodule{standard}{popen2}
\platform{Unix, Windows} \platform{Unix, Windows}
@ -41,8 +41,7 @@ specifies the size of the I/O buffers to/from the child process.
\end{classdesc} \end{classdesc}
\subsection{Popen3 Objects} \subsection{Popen3 Objects \label{popen3-objects}}
\label{popen3-objects}
Instances of the \class{Popen3} class have the following methods: Instances of the \class{Popen3} class have the following methods:
@ -58,15 +57,19 @@ Waits for and returns the return code of the child process.
The following attributes of \class{Popen3} objects are also available: The following attributes of \class{Popen3} objects are also available:
\begin{datadesc}{fromchild} \begin{memberdesc}{fromchild}
A file object that provides output from the child process. A file object that provides output from the child process.
\end{datadesc} \end{memberdesc}
\begin{datadesc}{tochild} \begin{memberdesc}{tochild}
A file object that provides input to the child process. A file object that provides input to the child process.
\end{datadesc} \end{memberdesc}
\begin{datadesc}{childerr} \begin{memberdesc}{childerr}
Where the standard error from the child process goes is Where the standard error from the child process goes is
\var{capturestderr} was true for the constructor, or \code{None}. \var{capturestderr} was true for the constructor, or \code{None}.
\end{datadesc} \end{memberdesc}
\begin{memberdesc}{pid}
The process ID of the child process.
\end{memberdesc}