summaryrefslogtreecommitdiffhomepage
path: root/test/python/empty/wsgi.py
blob: ce03850ac8a5db7e4713ff456ac9bc6da996a0ec (plain) (blame)
1
2
3
def application(env, start_response):
    start_response('200', [('Content-Length', '0')])
    return []