diff options
Diffstat (limited to 'test/python')
-rw-r--r-- | test/python/environment/wsgi.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/python/environment/wsgi.py b/test/python/environment/wsgi.py new file mode 100644 index 00000000..fa3a1d2b --- /dev/null +++ b/test/python/environment/wsgi.py @@ -0,0 +1,13 @@ +import os + +def application(env, start_response): + body = '' + vars = env.get('HTTP_X_VARIABLES').split(',') + + for var in vars: + if var in os.environ: + body += str(os.environ[var]) + ',' + + body = body.encode() + start_response('200', [('Content-Length', str(len(body)))]) + return body |