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 0e0fffc commit 2629088Copy full SHA for 2629088
uasyncio.core/uasyncio/core.py
@@ -25,7 +25,7 @@ def create_task(self, coro):
25
# CPython asyncio incompatibility: we don't return Task object
26
27
def call_soon(self, callback, *args):
28
- self.call_at(0, callback, *args)
+ self.call_at(self.time(), callback, *args)
29
30
def call_later(self, delay, callback, *args):
31
self.call_at(self.time() + delay, callback, *args)
0 commit comments