summaryrefslogblamecommitdiffhomepage
path: root/test/python/query_string/wsgi.py
blob: 54a67b0379e6312f0e7a2678c5cd3e82b20094b7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                         






                                                          
             
def application(environ, start_response):

    start_response(
        '200',
        [
            ('Content-Length', '0'),
            ('Query-String', environ.get('QUERY_STRING')),
        ],
    )
    return []