xref: /unit/test/python/body_io/wsgi.py (revision 603:a11b80dedc6b)
1import io
2
3def application(env, start_response):
4    start_response('200', [('Content-Length', '10')])
5    f = io.BytesIO(b'0123456789')
6    return f
7