From a01a98ce36dd47c1be1df37470cac1656efac31e Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 2 Apr 2018 17:03:41 +0300 Subject: Tests: more Python tests. --- test/python/body_array/wsgi.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/python/body_array/wsgi.py (limited to 'test/python/body_array') 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'] -- cgit