|
__init__(self,
connection)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
source code
|
|
|
parse_request(self)
Parse the next HTTP request start-line and message-headers. |
source code
|
|
|
read_headers(self)
Read header lines from the incoming stream. |
source code
|
|
|
decode_chunked(self)
Decode the 'chunked' transfer coding. |
source code
|
|
|
respond(self)
Call the appropriate WSGI app and write its iterable output. |
source code
|
|
|
simple_response(self,
status,
msg='
' )
Write a simple response back to the client. |
source code
|
|
|
start_response(self,
status,
headers,
exc_info=None)
WSGI callable to begin the HTTP response. |
source code
|
|
|
write(self,
chunk)
WSGI callable to write unbuffered data to the client. |
source code
|
|
|
send_headers(self)
Assert, process, and send the HTTP response message-headers. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|