Files
nginx-unit/test/python/close_error/wsgi.py
Max Romanov 1bb22d1e92 Unit application library.
Library now used in all language modules.
Old 'nxt_app_*' code removed.

See src/test/nxt_unit_app_test.c for usage sample.
2018-08-06 17:27:33 +03:00

13 lines
347 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.\n')
self.environ['wsgi.errors'].flush()