Searched refs:_exithandlers (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | atexit.py | 12 _exithandlers = [] variable 21 while _exithandlers: 22 func, targs, kargs = _exithandlers.pop() 46 _exithandlers.append((func, targs, kargs))
|
/external/python/cpython2/Lib/test/ |
D | test_atexit.py | 19 self.save_handlers = atexit._exithandlers 20 atexit._exithandlers = [] 25 atexit._exithandlers = self.save_handlers
|
/external/python/cpython2/Lib/multiprocessing/ |
D | util.py | 105 atexit._exithandlers.remove((_exit_function, (), {})) 106 atexit._exithandlers.append((_exit_function, (), {}))
|
/external/python/cpython3/Lib/multiprocessing/ |
D | util.py | 79 atexit._exithandlers.remove((_exit_function, (), {})) 80 atexit._exithandlers.append((_exit_function, (), {}))
|