(self)
| 657 | self.patcher = None |
| 658 | |
| 659 | def __del__(self): |
| 660 | with suppress(Exception): |
| 661 | if "win32" in sys.platform: |
| 662 | self.stop_client() |
| 663 | self.command_executor.close() |
| 664 | else: |
| 665 | super().quit() |
| 666 | with suppress(Exception): |
| 667 | self.quit() |
| 668 | |
| 669 | def __enter__(self): |
| 670 | return self |