blob: 36cf07b0badd3af4dc0d34c140a4fb40093a1b30 (
plain) (
tree)
|
|
def application(environ, start_response):
body = []
while True:
l = environ['wsgi.input'].readline(9)
if not l:
break
body.append(l)
if len(l) > 9:
body.append(b'len(l) > 9: ' + l)
break
start_response('200', [('X-Lines-Count', str(len(body)))])
return body
|