(self, exit_status: int | str | None = 0)
| 1060 | self._logging_configured = False |
| 1061 | |
| 1062 | def exit(self, exit_status: int | str | None = 0) -> None: |
| 1063 | self.log.debug("Exiting application: %s", self.name) |
| 1064 | self.close_handlers() |
| 1065 | sys.exit(exit_status) |
| 1066 | |
| 1067 | def __del__(self) -> None: |
| 1068 | # __del__ may be called during process teardown, |
no test coverage detected