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

Method run_forever

Lib/asyncio/events.py:259–261  ·  view source on GitHub ↗

Run the event loop until stop() is called.

(self)

Source from the content-addressed store, hash-verified

257 # Running and stopping the event loop.
258
259 def run_forever(self):
260 """Run the event loop until stop() is called."""
261 raise NotImplementedError
262
263 def run_until_complete(self, future):
264 """Run the event loop until a Future is done.

Calls

no outgoing calls