(self)
| 297 | """ |
| 298 | |
| 299 | def __init__(self) -> None: |
| 300 | self._virtual_clock = _VirtualClock() |
| 301 | super().__init__(selector=_AutojumpSelector(self._virtual_clock)) |
| 302 | # Resolve finely enough that the sub-nanosecond tie-break is representable and only the |
| 303 | # exact-same-instant timer fires per jump. |
| 304 | self._clock_resolution = _FINE_RESOLUTION |
| 305 | self._tie_seq = 0 |
| 306 | |
| 307 | def time(self) -> float: |
| 308 | return self._virtual_clock.time() |
nothing calls this directly
no test coverage detected