Tests: added Python test with not iterable object.
This commit is contained in:
7
test/python/not_iterable/wsgi.py
Normal file
7
test/python/not_iterable/wsgi.py
Normal file
@@ -0,0 +1,7 @@
|
||||
class application:
|
||||
def __init__(self, environ, start_response):
|
||||
self.environ = environ
|
||||
self.start = start_response
|
||||
|
||||
def __iter__(self):
|
||||
self.start('200', [(('Content-Length', '0'))])
|
||||
Reference in New Issue
Block a user