[Python-checkins] CVS: python/dist/src/Doc/lib libcgihttp.tex,1.6,1.7

Fred L. Drake fdrake@users.sourceforge.net
Sun, 18 Nov 2001 21:16:37 -0800


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

Modified Files:
	libcgihttp.tex 
Log Message:
Update the platform notes for the CGIHTTPServer module; it works on more
platforms now, and has since Python 2.0.
This closes SF bug #482943.


Index: libcgihttp.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcgihttp.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** libcgihttp.tex	2001/10/20 04:24:09	1.6
--- libcgihttp.tex	2001/11/19 05:16:35	1.7
***************
*** 4,8 ****
  
  \declaremodule{standard}{CGIHTTPServer}
-   \platform{Unix}
  \sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
  \modulesynopsis{This module provides a request handler for HTTP servers
--- 4,7 ----
***************
*** 16,21 ****
  run CGI scripts.
  
! \note{This module is \UNIX{} dependent since it creates the
! CGI process using \function{os.fork()} and \function{os.exec()}.}
  
  The \module{CGIHTTPServer} module defines the following class:
--- 15,21 ----
  run CGI scripts.
  
! \note{This module can run CGI scripts on \UNIX{} and Windows systems;
! on Mac OS it will only be able to run Python scripts within the same
! process as itself.}
  
  The \module{CGIHTTPServer} module defines the following class: