MCPcopy Index your code
hub / github.com/python/cpython / atexit

Method atexit

Lib/weakref.py:516–519  ·  view source on GitHub ↗

Whether finalizer should be called at exit

(self)

Source from the content-addressed store, hash-verified

514
515 @property
516 def atexit(self):
517 """Whether finalizer should be called at exit"""
518 info = self._registry.get(self)
519 return bool(info) and info.atexit
520
521 @atexit.setter
522 def atexit(self, value):

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected