CGI/HTML forms in a standalone application.
Moshe Zadka
moshez at math.huji.ac.il
Fri Feb 18 08:09:07 EST 2000
More information about the Python-list mailing list
Fri Feb 18 08:09:07 EST 2000
- Previous message (by thread): tkinter + stubs
- Next message (by thread): CGI/HTML forms in a standalone application.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Fri, 18 Feb 2000, Michael [iso-8859-1] Ströder wrote: > > You can derive a class from SimpleHTTPRequestHandler, copy some code from > > CGIHTTPRequestHandler and come up with a class > > CGILikePythonFunctionHTTPRequestHandler > > I did this and it works as expected except that the browser does not > stop loading. Do I have to close a socket or associated file? Yes: you have to close the associated file object, which you get as an attribute of the class in the .handle() method. -- Moshe Zadka <mzadka at geocities.com>. INTERNET: Learn what you know. Share what you don't.
- Previous message (by thread): tkinter + stubs
- Next message (by thread): CGI/HTML forms in a standalone application.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list