6 lines
155 B
Python
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'
|