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

Doc/lib/libcgihttp.tex

index 61cd08c334a8894264329ee481e823eb80c79359..70726f78c8797a34fc893e83e54adad1ce444262 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.
 
-\strong{Note:}  This module is \UNIX{} dependent since it creates the
-CGI process using \function{os.fork()} and \function{os.exec()}.
+\strong{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: