From af964488bad7fe00855749520d929ea1cb0de9d4 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Mon, 21 Sep 2020 10:32:14 +0300 Subject: Tests: changing Python application callable name. --- test/python/callable/wsgi.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/python/callable/wsgi.py (limited to 'test/python/callable/wsgi.py') diff --git a/test/python/callable/wsgi.py b/test/python/callable/wsgi.py new file mode 100644 index 00000000..365f82fa --- /dev/null +++ b/test/python/callable/wsgi.py @@ -0,0 +1,7 @@ +def application(env, start_response): + start_response('204', [('Content-Length', '0')]) + return [] + +def app(env, start_response): + start_response('200', [('Content-Length', '0')]) + return [] -- cgit