(self)
| 151 | self._scheduled = False |
| 152 | |
| 153 | def _repr_info(self): |
| 154 | info = super()._repr_info() |
| 155 | pos = 2 if self._cancelled else 1 |
| 156 | info.insert(pos, f'when={self._when}') |
| 157 | return info |
| 158 | |
| 159 | def __hash__(self): |
| 160 | return hash(self._when) |
nothing calls this directly
no test coverage detected