Skip to content

Commit c147534

Browse files
committed
update AbstractEventLoop to take **kwargs also
1 parent 7b331b4 commit c147534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def create_future(self):
329329

330330
# Method scheduling a coroutine object: create a task.
331331

332-
def create_task(self, coro, *, name=None, context=None):
332+
def create_task(self, coro, *, **kwargs):
333333
raise NotImplementedError
334334

335335
# Methods for interacting with threads.

0 commit comments

Comments
 (0)