Home | History | Annotate | Download | only in Lib

Lines Matching defs:atexit

508     atexit attribute is true will be run in reverse order of creation.
509 By default atexit is true.
524 __slots__ = ("weakref", "func", "args", "kwargs", "atexit", "index")
530 import atexit
531 atexit.register(self._exitfunc)
538 info.atexit = True
572 def atexit(self):
575 return bool(info) and info.atexit
577 @atexit.setter
578 def atexit(self, value):
581 info.atexit = bool(value)
595 L = [(f,i) for (f,i) in cls._registry.items() if i.atexit]
601 # At shutdown invoke finalizers for which atexit is true.