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

Method stop

Lib/asyncio/events.py:270–276  ·  view source on GitHub ↗

Stop the event loop as soon as reasonable. Exactly how soon that is may depend on the implementation, but no more I/O callbacks should be scheduled.

(self)

Source from the content-addressed store, hash-verified

268 raise NotImplementedError
269
270 def stop(self):
271 """Stop the event loop as soon as reasonable.
272
273 Exactly how soon that is may depend on the implementation, but
274 no more I/O callbacks should be scheduled.
275 """
276 raise NotImplementedError
277
278 def is_running(self):
279 """Return whether the event loop is currently running."""

Callers 2

callbackMethod · 0.45
runcodeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected