summaryrefslogtreecommitdiffhomepage
path: root/test/python/close_error/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/close_error/wsgi.py')
-rw-r--r--test/python/close_error/wsgi.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/python/close_error/wsgi.py b/test/python/close_error/wsgi.py
new file mode 100644
index 00000000..bd9d4d36
--- /dev/null
+++ b/test/python/close_error/wsgi.py
@@ -0,0 +1,10 @@
+class application:
+ def __init__(self, environ, start_response):
+ self.environ = environ
+ self.start = start_response
+
+ def __iter__(self):
+ self.start('200', [(('!', '0'))])
+
+ def close(self):
+ self.environ['wsgi.errors'].write('Close called.')