summaryrefslogtreecommitdiffhomepage
path: root/test/python/atexit/wsgi.py
blob: b64b8477212753ffe222a07da1a73dcbc07c1083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import atexit


def application(environ, start_response):
    def at_exit():
        environ['wsgi.errors'].write('At exit called.\n')
        environ['wsgi.errors'].flush()

    atexit.register(at_exit)

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