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 []