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

Method __init__

Lib/asyncio/events.py:146–151  ·  view source on GitHub ↗
(self, when, callback, args, loop, context=None)

Source from the content-addressed store, hash-verified

144 __slots__ = ['_scheduled', '_when']
145
146 def __init__(self, when, callback, args, loop, context=None):
147 super().__init__(callback, args, loop, context)
148 if self._source_traceback:
149 del self._source_traceback[-1]
150 self._when = when
151 self._scheduled = False
152
153 def _repr_info(self):
154 info = super()._repr_info()

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected