Package wsgitools :: Module middlewares :: Class NoWriteCallableMiddleware
[hide private]
[frames] | no frames]

Class NoWriteCallableMiddleware

source code

This middleware wraps a wsgi application that needs the return value of start_response function to a wsgi application that doesn't need one by writing the data to a StringIO and then making it be the first result element.

Instance Methods [hide private]
 
__init__(self, app)
Wraps wsgi application app.
source code
gen([str])
__call__(self, environ, start_response)
wsgi interface
source code
Method Details [hide private]

__call__(self, environ, start_response)
(Call operator)

source code 

wsgi interface

Parameters:
  • environ ({str, str})
Returns: gen([str])