@@ -458,25 +458,18 @@ def create_future(self):
458
458
"""Create a Future object attached to the loop."""
459
459
return futures .Future (loop = self )
460
460
461
- def create_task (self , coro , * , name = None , context = None ):
461
+ def create_task (self , coro , ** kwargs ):
462
462
"""Schedule a coroutine object.
463
463
464
464
Return a task object.
465
465
"""
466
466
self ._check_closed ()
467
467
if self ._task_factory is None :
468
- task = tasks .Task (coro , loop = self , name = name , context = context )
468
+ task = tasks .Task (coro , loop = self , ** kwargs )
469
469
if task ._source_traceback :
470
470
del task ._source_traceback [- 1 ]
471
471
else :
472
- if context is None :
473
- # Use legacy API if context is not needed
474
- task = self ._task_factory (self , coro )
475
- else :
476
- task = self ._task_factory (self , coro , context = context )
477
-
478
- task .set_name (name )
479
-
472
+ task = self ._task_factory (self , coro , ** kwargs )
480
473
try :
481
474
return task
482
475
finally :
@@ -490,9 +483,10 @@ def set_task_factory(self, factory):
490
483
If factory is None the default task factory will be set.
491
484
492
485
If factory is a callable, it should have a signature matching
493
- '(loop, coro)', where 'loop' will be a reference to the active
494
- event loop, 'coro' will be a coroutine object. The callable
495
- must return a Future.
486
+ '(loop, coro, **kwargs)', where 'loop' will be a reference to the active
487
+ event loop, 'coro' will be a coroutine object, and **kwargs will be
488
+ arbitrary keyword arguments that should be passed on to Task.
489
+ The callable must return a Task.
496
490
"""
497
491
if factory is not None and not callable (factory ):
498
492
raise TypeError ('task factory must be a callable or None' )
0 commit comments