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