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

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


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

Modified Files:
      Tag: release21-maint
	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.13.6.1
diff -C2 -r1.13 -r1.13.6.1
*** libpopen2.tex	2000/09/28 20:27:51	1.13
--- libpopen2.tex	2001/07/06 17:18:05	1.13.6.1
***************
*** 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}