summaryrefslogtreecommitdiffhomepage
path: root/test/python/query_string/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/query_string/wsgi.py')
-rw-r--r--test/python/query_string/wsgi.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/python/query_string/wsgi.py b/test/python/query_string/wsgi.py
new file mode 100644
index 00000000..90f1c7ec
--- /dev/null
+++ b/test/python/query_string/wsgi.py
@@ -0,0 +1,7 @@
+def application(environ, start_response):
+
+ start_response('200', [
+ ('Content-Length', '0'),
+ ('Query-String', environ.get('QUERY_STRING'))
+ ])
+ return []