Skip to content
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
4 changes: 2 additions & 2 deletions Lib/asyncio/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,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