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

Method __init__

Lib/asyncio/tasks.py:747–751  ·  view source on GitHub ↗
(self, children, *, loop)

Source from the content-addressed store, hash-verified

745 """
746
747 def __init__(self, children, *, loop):
748 assert loop is not None
749 super().__init__(loop=loop)
750 self._children = children
751 self._cancel_requested = False
752
753 def cancel(self, msg=None):
754 if self.done():

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected