From f6c3ef7ed3efd6f63ef55a117fe475bd369d248b Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Thu, 5 Apr 2018 17:55:06 +0300 Subject: Tests: added Python test with not iterable object. --- test/python/not_iterable/wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/python/not_iterable/wsgi.py (limited to 'test/python/not_iterable') diff --git a/test/python/not_iterable/wsgi.py b/test/python/not_iterable/wsgi.py new file mode 100644 index 00000000..ad24cca9 --- /dev/null +++ b/test/python/not_iterable/wsgi.py @@ -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'))]) -- cgit