MCPcopy Index your code
hub / github.com/python/cpython / __repr__

Method __repr__

Lib/asyncio/base_events.py:455–459  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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."""

Callers

nothing calls this directly

Calls 3

is_runningMethod · 0.95
is_closedMethod · 0.95
get_debugMethod · 0.95

Tested by

no test coverage detected