8000 [3.9] bpo-46278: fix typo introduced in GH-30427 (GH-30430) by miss-islington · Pull Request #30432 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-46278: fix typo introduced in GH-30427 (GH-30430) #30432

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 6, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bpo-46278: fix typo introduced in GH-30427 (GH-30430)
Automerge-Triggered-By: GH:asvetlov
(cherry picked from commit b50e5e9)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
  • Loading branch information
kumaraditya303 authored and miss-islington committed Jan 6, 2022
commit fde9dc202d9b0a76c3f1d232b8e4787812b485b0
4 changes: 2 additions & 2 deletions Lib/asyncio/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ def _timer_handle_cancelled(self, handle):
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):
Expand Down
0