(self)
| 443 | super().__init__(conn) |
| 444 | |
| 445 | def gettimeout(self) -> float | None: |
| 446 | return self.conn.gettimeout() |
| 447 | |
| 448 | def settimeout(self, timeout: float | None) -> None: |
| 449 | self.conn.settimeout(timeout) |
nothing calls this directly
no test coverage detected