Whether finalizer should be called at exit
(self)
| 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): |