1def application(env, start_response): 2 write = start_response('200', [('Content-Length', '10')]) 3 write(b'012') 4 write(b'345') 5 return b'6789' 6