[Python-checkins] CVS: python/dist/src/Doc/lib libos.tex,1.74.2.1,1.74.2.1.2.1

Fred L. Drake fdrake@users.sourceforge.net
Mon, 01 Apr 2002 15:29:04 -0800


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

Modified Files:
      Tag: release22-maint
	libos.tex 
Log Message:
Explain that os.spawn*() return the process handle on Windows.
This closes SF bug #537582.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.74.2.1
retrieving revision 1.74.2.1.2.1
diff -C2 -d -r1.74.2.1 -r1.74.2.1.2.1
*** libos.tex	21 Dec 2001 03:58:27 -0000	1.74.2.1
--- libos.tex	1 Apr 2002 23:29:02 -0000	1.74.2.1.2.1
***************
*** 1019,1023 ****
  process; if \var{mode} is \constant{P_WAIT}, returns the process's
  exit code if it exits normally, or \code{-\var{signal}}, where
! \var{signal} is the signal that killed the process.
  
  The \character{l} and \character{v} variants of the
--- 1019,1024 ----
  process; if \var{mode} is \constant{P_WAIT}, returns the process's
  exit code if it exits normally, or \code{-\var{signal}}, where
! \var{signal} is the signal that killed the process.  On Windows, the
! process ID will actually be the process handle.
  
  The \character{l} and \character{v} variants of the