(self, timeout: float | None)
| 446 | return self.conn.gettimeout() |
| 447 | |
| 448 | def settimeout(self, timeout: float | None) -> None: |
| 449 | self.conn.settimeout(timeout) |
| 450 | |
| 451 | def close(self) -> None: |
| 452 | self.conn.close() |
nothing calls this directly
no test coverage detected