Files
nginx-unit/test/python/write/wsgi.py
2018-04-26 17:37:24 +03:00

6 lines
155 B
Python

def application(env, start_response):
write = start_response('200', [('Content-Length', '10')])
write(b'012')
write(b'345')
return b'6789'