MCPcopy Index your code
hub / github.com/RustPython/RustPython / stop

Method stop

Lib/asyncio/base_events.py:721–727  ·  view source on GitHub ↗

Stop running the event loop. Every callback already scheduled will still run. This simply informs run_forever to stop looping after a complete iteration.

(self)

Source from the content-addressed store, hash-verified

719 return future.result()
720
721 def stop(self):
722 """Stop running the event loop.
723
724 Every callback already scheduled will still run. This simply informs
725 run_forever to stop looping after a complete iteration.
726 """
727 self._stopping = True
728
729 def close(self):
730 """Close the event loop.

Callers 1

_run_until_complete_cbFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected