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