Method
__init__
(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
Tested by
no test coverage detected