(self)
| 1479 | ) |
| 1480 | |
| 1481 | def __del__(self) -> None: |
| 1482 | # Avoid ResourceWarnings in Python 3 |
| 1483 | # Close all sockets without calling reset() or close() because it is |
| 1484 | # not safe to acquire a lock in __del__. |
| 1485 | if _IS_SYNC: |
| 1486 | for conn in self.conns: |
| 1487 | conn.close_conn(None) # type: ignore[unused-coroutine] |
nothing calls this directly
no test coverage detected