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

Method _timer_handle_cancelled

Lib/asyncio/events.py:307–309  ·  view source on GitHub ↗

Notification that a TimerHandle has been cancelled.

(self, handle)

Source from the content-addressed store, hash-verified

305 # Methods scheduling callbacks. All these return Handles.
306
307 def _timer_handle_cancelled(self, handle):
308 """Notification that a TimerHandle has been cancelled."""
309 raise NotImplementedError
310
311 def call_soon(self, callback, *args, context=None):
312 return self.call_later(0, callback, *args, context=context)

Callers 1

cancelMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected