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