[Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex,1.13,1.14

Fred L. Drake fdrake@users.sourceforge.net
Fri, 06 Jul 2001 10:17:14 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv5638/lib

Modified Files:
	libpopen2.tex 
Log Message:

Explain the exit code for the wait() method, including a reference to
the os.W*() functions used to interpret the return value.

This fixes SF bug #429361.


Index: libpopen2.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpopen2.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** libpopen2.tex	2000/09/28 20:27:51	1.13
--- libpopen2.tex	2001/07/06 17:17:12	1.14
***************
*** 78,82 ****
  
  \begin{methoddesc}{wait}{}
! Waits for and returns the return code of the child process.
  \end{methoddesc}
  
--- 78,87 ----
  
  \begin{methoddesc}{wait}{}
! Waits for and returns the status code of the child process.  The
! status code encodes both the return code of the process and
! information about whether it exited using the \cfunction{exit()}
! system call or died due to a signal.  Functions to help interpret the
! status code are defined in the \refmodule{os} module; see section
! \ref{os-process} for the \function{W\var{*}()} family of functions.
  \end{methoddesc}