blob: f80a34d715a6efc7a164ad413818a2779b15863b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
class application:
def __init__(self, environ, start_response):
self.environ = environ
self.start = start_response
def __iter__(self):
self.start('200', [(('Content-Length', '0'))])
def close(self):
self.environ['wsgi.errors'].write('Close called.')
|