summaryrefslogtreecommitdiffhomepage
path: root/test/python/204_no_content/wsgi.py
blob: 2184ffeb6c26422650d0442d434a74cf6009f825 (plain) (blame)
1
2
3
4
def application(environ, start_response):

    start_response('204 No Content', [])
    return []