Home
last modified time | relevance | path

Searched refs:start_response (Results 1 – 25 of 52) sorted by relevance

123

/unit/test/python/targets/
H A Dwsgi.py1 def wsgi_target_a(env, start_response): argument
2 start_response('200', [('Content-Length', '1')])
6 def wsgi_target_b(env, start_response): argument
7 start_response('200', [('Content-Length', '1')])
11 def wsgi_target_prefix(env, start_response): argument
13 start_response('200', [('Content-Length', f'{data}')])
/unit/test/python/callable/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response('204', [('Content-Length', '0')])
6 def app(env, start_response): argument
7 start_response('200', [('Content-Length', '0')])
/unit/test/python/syntax_error/
H A Dwsgi.py1 def application(env, start_response) argument
2 start_response('200', [('Content-Length', '0')])
/unit/test/python/empty/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response('200', [('Content-Length', '0')])
/unit/test/python/204_no_content/
H A Dwsgi.py1 def application(environ, start_response): argument
3 start_response('204 No Content', [])
/unit/test/python/start_response_exit/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response('200', [('Content-Length', '1')])
/unit/test/python/custom_header/
H A Dwsgi.py1 def application(environ, start_response): argument
3 start_response(
/unit/test/python/query_string/
H A Dwsgi.py1 def application(environ, start_response): argument
3 start_response(
/unit/test/python/server_port/
H A Dwsgi.py1 def application(environ, start_response): argument
3 start_response(
/unit/test/python/body_array/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response('200', [('Content-Length', '10')])
/unit/test/python/body_io_file/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response('200', [('Content-Length', '5')])
/unit/test/python/prefix/
H A Dwsgi.py1 def application(environ, start_response): argument
2 start_response(
/unit/test/python/encoding/
H A Dwsgi.py4 def application(environ, start_response): argument
5 start_response(
/unit/test/python/errors_write/
H A Dwsgi.py1 def application(environ, start_response): argument
5 start_response('200', [('Content-Length', '0')])
/unit/test/python/forwarded_header/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response(
/unit/test/python/host/
H A Dwsgi.py1 def application(env, start_response): argument
2 start_response(
/unit/test/python/write/
H A Dwsgi.py1 def application(env, start_response): argument
2 write = start_response('200', [('Content-Length', '10')])
/unit/test/python/body_io/
H A Dwsgi.py4 def application(env, start_response): argument
5 start_response('200', [('Content-Length', '10')])
/unit/test/python/restart/
H A Dv1.py1 def application(environ, start_response): argument
4 start_response('200', [('Content-Length', str(len(body)))])
H A Dv2.py1 def application(environ, start_response): argument
4 start_response('200', [('Content-Length', str(len(body)))])
/unit/test/python/input_readlines/
H A Dwsgi.py1 def application(environ, start_response): argument
4 start_response('200', [('X-Lines-Count', str(len(body)))])
/unit/test/python/client_ip/
H A Dwsgi.py1 def application(env, start_response): argument
3 start_response('200', [('Content-Length', str(len(ip)))])
/unit/test/python/atexit/
H A Dwsgi.py4 def application(environ, start_response): argument
11 start_response('200', [('Content-Length', '0')])
/unit/test/python/unicode/
H A Dwsgi.py1 def application(environ, start_response): argument
7 start_response('200', [('Content-Length', '0')])
/unit/test/python/body_generate/
H A Dwsgi.py1 def application(env, start_response): argument
5 start_response('200', [('Content-Length', length)])

123