summaryrefslogtreecommitdiffhomepage
path: root/test/python/body_generate/wsgi.py
blob: 3d12ac60b8f507d2584e9b5da011f3c98ee3f2f4 (plain) (blame)
1
2
3
4
5
6
def application(env, start_response):
    length = env.get('HTTP_X_LENGTH', '10')
    body = b'X' * int(length)

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