We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191de78 commit e13e139Copy full SHA for e13e139
uasyncio.core/uasyncio/core.py
@@ -119,7 +119,10 @@ def run_forever(self):
119
if __debug__ and DEBUG:
120
log.debug("Coroutine finished: %s", cb)
121
continue
122
- self.call_later_ms(delay, cb, args)
+ # Currently all syscalls don't return anything, so we don't
123
+ # need to feed anything to the next invocation of coroutine.
124
+ # If that changes, need to pass that value below.
125
+ self.call_later_ms(delay, cb)
126
127
def run_until_complete(self, coro):
128
def _run_and_stop():
0 commit comments