(self)
| 453 | self._executor_shutdown_called = False |
| 454 | |
| 455 | def __repr__(self): |
| 456 | return ( |
| 457 | f'<{self.__class__.__name__} running={self.is_running()} ' |
| 458 | f'closed={self.is_closed()} debug={self.get_debug()}>' |
| 459 | ) |
| 460 | |
| 461 | def create_future(self): |
| 462 | """Create a Future object attached to the loop.""" |
nothing calls this directly
no test coverage detected