1def application(environ, start_response): 2 start_response('200 OK', [('Content-type', 'text/html'), 3 ('test-header', 'TEST!')]) 4 return [b'subsimple'] 5
1def application(environ, start_response): 2 start_response('200 OK', [('Content-type', 'text/html'), 3 ('test-header', 'TEST!')]) 4 return [b'subsimple'] 5