Returns True if the event loop is running.
(self)
| 760 | self.close() |
| 761 | |
| 762 | def is_running(self): |
| 763 | """Returns True if the event loop is running.""" |
| 764 | return (self._thread_id is not None) |
| 765 | |
| 766 | def time(self): |
| 767 | """Return the time according to the event loop's clock. |
no outgoing calls
no test coverage detected