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