summaryrefslogblamecommitdiffhomepage
path: root/test/python/input_readlines/wsgi.py
blob: 64b03d7997f13938552987c62ce5a666a2801b1f (plain) (tree)
1
2
3
4
5




                                                              
def application(environ, start_response):
    body = environ['wsgi.input'].readlines()

    start_response('200', [('X-Lines-Count', str(len(body)))])
    return body