summaryrefslogtreecommitdiffhomepage
path: root/test/python/restart/v2.py
blob: 59e3d30fafad852cd083a3c002b745ce79714a8e (plain) (blame)
1
2
3
4
5
6
7
import os

def application(environ, start_response):
    body = "v2".encode()

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