Is timeout expired during execution?
(self)
| 69 | self._timeout_handler = loop.call_at(when, self._on_timeout) |
| 70 | |
| 71 | def expired(self) -> bool: |
| 72 | """Is timeout expired during execution?""" |
| 73 | return self._state in (_State.EXPIRING, _State.EXPIRED) |
| 74 | |
| 75 | def __repr__(self) -> str: |
| 76 | info = [''] |
no outgoing calls