[Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py

Guido van Rossum guido@cnri.reston.va.us
Sun, 6 Dec 1998 23:08:31 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
	SimpleHTTPServer.py 
Log Message:
Patch by Jeff Rush:

In SimpleHTTPServer.py, the server specified in test() should
be BaseHTTPServer.HTTPServer, in case the request handler should
want to reference the two attributes added by
BaseHTTPServer.server_bind:

        self.server_name = hostname
        self.server_port = port

There was some Bobo CGI code that wanted access to those attributes.