python asyncio run_forever or while True is similar but it is a "should I do this..." question.
I am more trying to understand if the internals of python asyncio
is basically a
while True:
...
time.sleep(1)
(or more precisely... while not stopped:
loop.
Does it use also use sleep
to prevent spin waits?