Files
nginx-unit/test/python/not_iterable/wsgi.py
2018-04-05 17:55:06 +03:00

8 lines
215 B
Python

class application:
def __init__(self, environ, start_response):
self.environ = environ
self.start = start_response
def __iter__(self):
self.start('200', [(('Content-Length', '0'))])