SocketServer.BaseRequestHandler:
Base class for request handler classes.
SocketServer.StreamRequestHandler:
Define self.rfile and self.wfile for stream sockets.
BaseHTTPServer.BaseHTTPRequestHandler:
HTTP request handler base class.
tangled.server.AsyncHTTPRequestHandler:
An asynchronous HTTP request handler inspired somewhat by the
http://code.activestate.com/recipes/440665-asynchronous-http-server/
recipe.
rfc822.Message:
Represents a single RFC 2822-compliant message.
mimetools.Message:
A derived class of rfc822.Message that knows about MIME headers and
contains some hooks for decoding encoded and multipart messages.
asyncore.dispatcher
tangled.server.AsyncHTTPServer:
Cobbled together from various sources, most of them state that they
copied from the Medusa http server..
tangled.core.Trigger:
Used to trigger the event loop with external stuff, also from
Medusa
asynchat.async_chat:
This is an abstract class.
tangled.server.AsyncHTTPRequestHandler:
An asynchronous HTTP request handler inspired somewhat by the
http://code.activestate.com/recipes/440665-asynchronous-http-server/
recipe.