summaryrefslogtreecommitdiffhomepage
path: root/test/python/body_array/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/python/body_array/wsgi.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/python/body_array/wsgi.py b/test/python/body_array/wsgi.py
new file mode 100644
index 00000000..2390f222
--- /dev/null
+++ b/test/python/body_array/wsgi.py
@@ -0,0 +1,3 @@
+def application(env, start_response):
+ start_response('200', [('Content-Length', '10')])
+ return [b'0123', b'4567', b'89']