Returns True if the event loop is running.
(self)
| 765 | self.close() |
| 766 | |
| 767 | def is_running(self): |
| 768 | """Returns True if the event loop is running.""" |
| 769 | return (self._thread_id is not None) |
| 770 | |
| 771 | def time(self): |
| 772 | """Return the time according to the event loop's clock. |
no outgoing calls
no test coverage detected