summaryrefslogblamecommitdiffhomepage
path: root/test/python/callable/wsgi.py
blob: 374ecb28a87d08d7d17b62f0c693be70f4f821e2 (plain) (tree)
1
2
3
4
5
6
7
8



                                                    
 


                                                    
def application(env, start_response):
    start_response('204', [('Content-Length', '0')])
    return []


def app(env, start_response):
    start_response('200', [('Content-Length', '0')])
    return []