summaryrefslogtreecommitdiffhomepage
path: root/test/python/errors_write/wsgi.py
blob: b1a9d2eec000f3d3d1ec59cbe52cd36b74c18c24 (plain) (blame)
1
2
3
4
5
def application(environ, start_response):
    environ['wsgi.errors'].write('Error in application.')

    start_response('200', [('Content-Length', '0')])
    return []