Files
nginx-unit/test/python/body_io/wsgi.py
2018-04-02 17:03:41 +03:00

7 lines
150 B
Python

import io
def application(env, start_response):
start_response('200', [('Content-Length', '10')])
f = io.BytesIO(b'0123456789')
return f