1def application(environ, start_response): 2 3 start_response( 4 '200', 5 [('Content-Length', '0'), ('Server-Port', environ.get('SERVER_PORT'))], 6 ) 7 return [] 8
1def application(environ, start_response): 2 3 start_response( 4 '200', 5 [('Content-Length', '0'), ('Server-Port', environ.get('SERVER_PORT'))], 6 ) 7 return [] 8