Seconds since this socket was last checked into its pool.
(self)
| 605 | self.is_writable = is_writable |
| 606 | |
| 607 | def idle_time_seconds(self) -> float: |
| 608 | """Seconds since this socket was last checked into its pool.""" |
| 609 | return time.monotonic() - self.last_checkin_time |
| 610 | |
| 611 | async def _raise_connection_failure(self, error: BaseException) -> NoReturn: |
| 612 | # Catch *all* exceptions from socket methods and close the socket. In |
no outgoing calls
no test coverage detected