8000 fix typo introduced in GH-30427 · python/cpython@02e6131 · GitHub
[go: up one dir, main page]

Skip to content

Commit 02e6131

Browse files
fix typo introduced in GH-30427
1 parent 3e43fac commit 02e6131

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/asyncio/events.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ def _timer_handle_cancelled(self, handle):
258258
raise NotImplementedError
259259

260260
def call_soon(self, callback, *args, context=None):
261-
return self.call_later(0, callback, *args)
261+
return self.call_later(0, callback, *args, context=context)
262262

263263
def call_later(self, delay, callback, *args, context=None):
264264
raise NotImplementedError
265265

266-
def call_at(self, when, callback, *args, cotext=None):
266+
def call_at(self, when, callback, *args, context=None):
267267
raise NotImplementedError
268268

269269
def time(self):

0 commit comments

Comments
 (0)
0