summaryrefslogtreecommitdiffhomepage
path: root/test/python/restart/v2.py
blob: 163d0d17761715125ebacc688a67c876023e5e98 (plain) (blame)
1
2
3
4
5
def application(environ, start_response):
    body = "v2".encode()

    start_response('200', [('Content-Length', str(len(body)))])
    return [body]