1import io 2 3 4def application(env, start_response): 5 start_response('200', [('Content-Length', '10')]) 6 f = io.BytesIO(b'0123456789') 7 return f 8