xref: /unit/test/python/query_string/wsgi.py (revision 1848:4bd548074e2c)
1def application(environ, start_response):
2
3    start_response(
4        '200',
5        [
6            ('Content-Length', '0'),
7            ('Query-String', environ.get('QUERY_STRING')),
8        ],
9    )
10    return []
11