summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-01-06 14:44:22 (GMT)
committerGitHub <noreply@github.com>2022-01-06 14:44:22 (GMT)
commit861a9aaf0f517623c58ca4eb5588804b2632fcba (patch)
tree6ac60c13e713a5c2dc9ba8f760e6e7e3c36a3d96 /Lib/asyncio
parent8670fbe4d2503ab9d3467d859fa504d1dd6c6eec (diff)
downloadcpython-861a9aaf0f517623c58ca4eb5588804b2632fcba.zip
cpython-861a9aaf0f517623c58ca4eb5588804b2632fcba.tar.gz
cpython-861a9aaf0f517623c58ca4eb5588804b2632fcba.tar.bz2
bpo-46278: fix typo introduced in GH-30427 (GH-30430) (GH-30431)
Automerge-Triggered-By: GH:asvetlov (cherry picked from commit b50e5e916a05df65ab6a255af7624b751e0fe9d1) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Lib/asyncio')
-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 5823605..5ab1acc 100644
--- a/Lib/asyncio/events.py
+++ b/Lib/asyncio/events.py
@@ -259,12 +259,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):