summaryrefslogblamecommitdiffhomepage
path: root/test/python/write/wsgi.py
blob: 6c90b014a138ecee99cf2142f874c9b73556d5af (plain) (tree)
1
2
3
4
5




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