diff options
-rw-r--r-- | Lib/asyncio/events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index 831c19c..e3c55b2 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -258,12 +258,12 @@ class AbstractEventLoop: raise NotImplementedError def call_soon(self, callback, *args, context=None): - return self.call_later(0, callback, *args) + return self.call_later(0, callback, *args, context=context) def call_later(self, delay, callback, *args, context=None): raise NotImplementedError - def call_at(self, when, callback, *args, cotext=None): + def call_at(self, when, callback, *args, context=None): raise NotImplementedError def time(self): |