xref: /unit/test/python/callable/wsgi.py (revision 1604:8cd5ee21340a)
1def application(env, start_response):
2    start_response('204', [('Content-Length', '0')])
3    return []
4
5def app(env, start_response):
6    start_response('200', [('Content-Length', '0')])
7    return []
8