Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3aa70d6

Browse files
committed
Document the "pid" attribute of the Popen3 class.
Use memberdesc instead of datadesc to document object attributes. This gets the index right.
1 parent a7ce52b commit 3aa70d6

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

Doc/lib/libpopen2.tex

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
\section{\module{popen2} ---
2-
Subprocesses with accessible standard I/O streams}
2+
Subprocesses with accessible I/O streams}
33

44
\declaremodule{standard}{popen2}
55
\platform{Unix, Windows}
@@ -41,8 +41,7 @@ \section{\module{popen2} ---
4141
\end{classdesc}
4242

4343

44-
\subsection{Popen3 Objects}
45-
\label{popen3-objects}
44+
\subsection{Popen3 Objects \label{popen3-objects}}
4645

4746
Instances of the \class{Popen3} class have the following methods:
4847

@@ -58,15 +57,19 @@ \subsection{Popen3 Objects}
5857

5958
The following attributes of \class{Popen3} objects are also available:
6059

61-
\begin{datadesc}{fromchild}
60+
\begin{memberdesc}{fromchild}
6261
A file object that provides output from the child process.
63-
\end{datadesc}
62+
\end{memberdesc}
6463

65-
\begin{datadesc}{tochild}
64+
\begin{memberdesc}{tochild}
6665
A file object that provides input to the child process.
67-
\end{datadesc}
66+
\end{memberdesc}
6867

69-
\begin{datadesc}{childerr}
68+
\begin{memberdesc}{childerr}
7069
Where the standard error from the child process goes is
7170
\var{capturestderr} was true for the constructor, or \code{None}.
72-
\end{datadesc}
71+
\end{memberdesc}
72+
73+
\begin{memberdesc}{pid}
74+
The process ID of the child process.
75+
\end{memberdesc}

0 commit comments

Comments
 (0)