summaryrefslogtreecommitdiffhomepage
path: root/test/python/prefix/wsgi.py
blob: 83b58c9a1522c89d224b598f96323e4129e9843a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
def application(environ, start_response):
    start_response(
        '200',
        [
            ('Content-Length', '0'),
            ('Script-Name', environ.get('SCRIPT_NAME', 'NULL')),
            ('Path-Info', environ['PATH_INFO']),
        ],
    )
    return []