(self, timeout: float | None)
| 420 | return self.conn[1].gettimeout |
| 421 | |
| 422 | def settimeout(self, timeout: float | None) -> None: |
| 423 | self.conn[1].settimeout(timeout) |
| 424 | |
| 425 | async def close(self) -> None: |
| 426 | self.conn[1].close() |
nothing calls this directly
no test coverage detected