]> granicus.if.org Git - python/commitdiff
Update the platform notes for the CGIHTTPServer module; it works on more
authorFred Drake <fdrake@acm.org>
Mon, 19 Nov 2001 05:16:35 +0000 (05:16 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 19 Nov 2001 05:16:35 +0000 (05:16 +0000)
platforms now, and has since Python 2.0.
This closes SF bug #482943.

Doc/lib/libcgihttp.tex

index bab1c377548b069f155083ffc891e2a5bd070109..3381c64e4a0d82e801db17577e3565aad1819fb2 100644 (file)
@@ -3,7 +3,6 @@
 
 
 \declaremodule{standard}{CGIHTTPServer}
-  \platform{Unix}
 \sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
 \modulesynopsis{This module provides a request handler for HTTP servers
                 which can run CGI scripts.}
@@ -15,8 +14,9 @@ interface compatible with
 from \class{SimpleHTTPServer.SimpleHTTPRequestHandler} but can also
 run CGI scripts.
 
-\note{This module is \UNIX{} dependent since it creates the
-CGI process using \function{os.fork()} and \function{os.exec()}.}
+\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: