summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-01-06 13:21:24 (GMT)
committerGitHub <noreply@github.com>2022-01-06 13:21:24 (GMT)
commitb50e5e916a05df65ab6a255af7624b751e0fe9d1 (patch)
tree8592d07b1aacd438ead105179425f188161537df
parente028ae99ecee671c0e8a3eabb829b5b2acfc4441 (diff)
downloadcpython-b50e5e916a05df65ab6a255af7624b751e0fe9d1.zip
cpython-b50e5e916a05df65ab6a255af7624b751e0fe9d1.tar.gz
cpython-b50e5e916a05df65ab6a255af7624b751e0fe9d1.tar.bz2
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Automerge-Triggered-By: GH:asvetlov
-rw-r--r--Lib/asyncio/events.py4
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):