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