Home | History | Annotate | Download | only in multiprocessing

Lines Matching refs:atexit

37 import atexit
88 import logging, atexit
100 if hasattr(atexit, 'unregister'):
101 atexit.unregister(_exit_function)
102 atexit.register(_exit_function)
104 atexit._exithandlers.remove((_exit_function, (), {}))
105 atexit._exithandlers.append((_exit_function, (), {}))
298 debug('running all "atexit" finalizers with priority >= 0')
321 debug('running the remaining "atexit" finalizers')
324 atexit.register(_exit_function)