class documentation

class ServerHandler(simple_server.ServerHandler): (source)

View In Hierarchy

Undocumented

Method __init__ Use a LimitedStream so that unread request data will be ignored at the end of the request. WSGIRequest uses a LimitedStream but it shouldn't discard the data since the upstream servers usually do this. ...
Method cleanup_headers Undocumented
Method close Undocumented
Class Variable http_version Undocumented
def __init__(self, stdin, stdout, stderr, environ, **kwargs): (source)

Use a LimitedStream so that unread request data will be ignored at the end of the request. WSGIRequest uses a LimitedStream but it shouldn't discard the data since the upstream servers usually do this. This fix applies only for testserver/runserver.

def cleanup_headers(self): (source)

Undocumented

def close(self): (source)

Undocumented

http_version: str = (source)

Undocumented