The configured timeout for the socket that underlies our protocol pair.
(self)
| 501 | |
| 502 | @property |
| 503 | def gettimeout(self) -> float | None: |
| 504 | """The configured timeout for the socket that underlies our protocol pair.""" |
| 505 | return self._timeout |
| 506 | |
| 507 | def connection_made(self, transport: BaseTransport) -> None: |
| 508 | """Called exactly once when a connection is made. |
no outgoing calls
no test coverage detected