1def application(env, start_response): 2 start_response('200', [('Content-Length', '1')]) 3 exit() 4 return [b'X'] 5