diff options
Diffstat (limited to 'test/python/body_array/wsgi.py')
-rw-r--r-- | test/python/body_array/wsgi.py | 3 |
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'] |