We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this 'deadlocks' on eager tasks, but raises an EG as expected on regular 'lazy' tasks.
import sys import asyncio if sys.version_info >= (3, 13): from asyncio import EventLoop elif sys.platform == "win32": from asyncio import ProactorEventLoop as EventLoop else: from asyncio import SelectorEventLoop as EventLoop def loop_factory(): loop = EventLoop() loop.set_task_factory(asyncio.eager_task_factory) return loop async def main(): async with asyncio.TaskGroup() as tg: async def third_task(): raise RuntimeError("third task failed") async def second_task(): tg.create_task(third_task()) await asyncio.Event().wait() tg.create_task(second_task()) # asyncio.run(main()) asyncio.run(main(), loop_factory=loop_factory)
3.12, 3.13, 3.14
Linux
The text was updated successfully, but these errors were encountered:
pythongh-128550: TaskGroup: cancel tasks added to set after aborting
41929bd
9726c3d
No branches or pull requests
Bug report
Bug description:
this 'deadlocks' on eager tasks, but raises an EG as expected on regular 'lazy' tasks.
CPython versions tested on:
3.12, 3.13, 3.14
Operating systems tested on:
Linux
Linked PRs
The text was updated successfully, but these errors were encountered: