12 lines
301 B
Python
12 lines
301 B
Python
class application:
|
|
def __init__(self, environ, start_response):
|
|
self.environ = environ
|
|
self.start = start_response
|
|
|
|
def __iter__(self):
|
|
self.start('200', [(('!', '0'))])
|
|
yield b''
|
|
|
|
def close(self):
|
|
self.environ['wsgi.errors'].write('Close called.')
|