Skip to content

Commit d600dd7

Browse files
authored
Apply suggestions from code review
1 parent 5c26ed7 commit d600dd7

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Doc/library/asyncio-eventloop.rst

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Creating Futures and Tasks
355355

356356
.. versionadded:: 3.5.2
357357

358-
.. method:: loop.create_task(coro, *, name=None, context=None, eager_start=None, **kwargs)
358+
.. method:: loop.create_task(coro, *, name=None, context=None, **kwargs)
359359

360360
Schedule the execution of :ref:`coroutine <coroutine>` *coro*.
361361
Return a :class:`Task` object.
@@ -376,13 +376,6 @@ Creating Futures and Tasks
376376
custom :class:`contextvars.Context` for the *coro* to run in.
377377
The current context copy is created when no *context* is provided.
378378

379-
An optional keyword-only *eager_start* argument allows eagerly starting
380-
the execution of the :class:`asyncio.Task` at task creation time.
381-
If set to ``True`` and the event loop is running, the task will start
382-
executing the coroutine immediately, until the first time the coroutine
383-
blocks. If the coroutine returns or raises without blocking, the task
384-
will be finished eagerly and will skip scheduling to the event loop.
385-
386379
.. versionchanged:: 3.8
387380
Added the *name* parameter.
388381

0 commit comments

Comments
 (0)