summaryrefslogtreecommitdiff
path: root/tests/urlparser_data/python/sub/simpleapp.py
blob: 88bd975aa20d9795118a7e5bdb7be5872df55389 (plain)
1
2
3
4
def application(environ, start_response):
    start_response('200 OK', [('Content-type', 'text/html'),
                              ('test-header', 'TEST!')])
    return [b'subsimple']