1def application(environ, start_response): 2 3 start_response( 4 '200', 5 [ 6 ('Content-Length', '0'), 7 ('Query-String', environ.get('QUERY_STRING')), 8 ], 9 ) 10 return [] 11