Package wsgiwebapi :: Module wsgisupport :: Class WSGIResponse
[frames] | no frames]

Class WSGIResponse

source code

object --+
         |
        WSGIResponse

Object satisfying the WSGI protocol for making a response.

This object should be passed the start_reponse parameter (as supplied by the WSGI protocol), and the Response object for the response. The status code, headers, and response body will be read from the Response object.

Instance Methods
 
__init__(self, start_response, response)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__iter__(self) source code
 
__len__(self) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties

Inherited from object: __class__

Method Details

__init__(self, start_response, response)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)