Skip to content

Commit 5dd55a0

Browse files
Update Modules/_asynciomodule.c
Co-authored-by: Itamar Oren <[email protected]>
1 parent e36c0c5 commit 5dd55a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_asynciomodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3463,8 +3463,8 @@ task_eager_start(asyncio_state *state, TaskObj *task)
34633463
}
34643464
// register the task into the linked list of tasks
34653465
// if the task completes eagerly (without suspending) then it will unregister itself
3466-
// in future_schedule_callbacks when done otherwise
3467-
// it will continue in lazy execution
3466+
// in future_schedule_callbacks when done, otherwise
3467+
// it will continue as a regular (non-eager) asyncio task
34683468
register_task(task);
34693469

34703470
if (PyContext_Enter(task->task_context) == -1) {

0 commit comments

Comments
 (0)