Whether finalizer should be called at exit
(self)
| 612 | |
| 613 | @property |
| 614 | def atexit(self): |
| 615 | """Whether finalizer should be called at exit""" |
| 616 | info = self._registry.get(self) |
| 617 | return bool(info) and info.atexit |
| 618 | |
| 619 | @atexit.setter |
| 620 | def atexit(self, value): |