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.
This commit is contained in:
Fred Drake 2001-11-19 05:16:35 +00:00
parent 63c4f907a9
commit e70dbe0fc5
1 changed files with 3 additions and 3 deletions

View 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: