(self)
| 423 | self.conn[1].settimeout(timeout) |
| 424 | |
| 425 | async def close(self) -> None: |
| 426 | self.conn[1].close() |
| 427 | await self.conn[1].wait_closed() |
| 428 | |
| 429 | def is_closing(self) -> bool: |
| 430 | return self.conn[0].is_closing() |
nothing calls this directly
no test coverage detected