xref: /unit/test/python/restart/v2.py (revision 1971:3410f9d2a662)
1def application(environ, start_response):
2    body = "v2".encode()
3
4    start_response('200', [('Content-Length', str(len(body)))])
5    return [body]
6