summaryrefslogtreecommitdiff
path: root/tests/urlparser_data/not_found/simple/__init__.py
blob: 7186daab33e3ceb81c633c4920c1065c0b528bb9 (plain)
1
2
3
def not_found_hook(environ, start_response):
    start_response('200 OK', [('Content-type', 'text/plain')])
    return [b'not found']