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