Skip to content

asyncio eager tasks' names are set too late #128308

Closed
@graingert

Description

@graingert

Bug report

Bug description:

consider:

import asyncio

async def main():
    names = []
    async with asyncio.TaskGroup() as tg:
        async def append_name():
            names.append(asyncio.current_task().get_name())

        tg.create_task(append_name(), name="example name")
    print(names)

def loop_factory():
    loop = asyncio.EventLoop()
    loop.set_task_factory(asyncio.eager_task_factory)
    return loop

asyncio.run(main())
asyncio.run(main(), loop_factory=loop_factory)

this outputs:

['example name']
['Task-5']

but it should output:

['example name']
['example name']

CPython versions tested on:

3.13

Operating systems tested on:

Linux

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    stdlibPython modules in the Lib dirtopic-asynciotype-bugAn unexpected behavior, bug, or error

    Projects

    Status

    Done

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions