Return the time according to the event loop's clock. This is a float expressed in seconds since an epoch, but the epoch, precision, accuracy and drift are unspecified and may differ per event loop.
(self)
| 764 | return (self._thread_id is not None) |
| 765 | |
| 766 | def time(self): |
| 767 | """Return the time according to the event loop's clock. |
| 768 | |
| 769 | This is a float expressed in seconds since an epoch, but the |
| 770 | epoch, precision, accuracy and drift are unspecified and may |
| 771 | differ per event loop. |
| 772 | """ |
| 773 | return time.monotonic() |
| 774 | |
| 775 | def call_later(self, delay, callback, *args, context=None): |
| 776 | """Arrange for a callback to be called at a given time. |
no outgoing calls
no test coverage detected