Home
last modified time | relevance | path

Searched refs:_exithandlers (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Datexit.py12 _exithandlers = [] variable
21 while _exithandlers:
22 func, targs, kargs = _exithandlers.pop()
46 _exithandlers.append((func, targs, kargs))
/external/python/cpython2/Lib/test/
Dtest_atexit.py14 self.save_handlers = atexit._exithandlers
15 atexit._exithandlers = []
20 atexit._exithandlers = self.save_handlers
/external/python/cpython2/Lib/multiprocessing/
Dutil.py105 atexit._exithandlers.remove((_exit_function, (), {}))
106 atexit._exithandlers.append((_exit_function, (), {}))