Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

TaskGroup suppresses grouped exceptions due to parent task cancellation #95704

Closed
Labels
3.11only security fixes3.12only security fixestopic-asynciotype-bugAn unexpected behavior, bug, or error
@graingert

Description

@graingert

TaskGroup suppresses grouped exceptions due to parent task cancellation

The suggestion was to always check for Cancellation in every finally block in async context managers, however sometimes there's no finally block visible and the problem applies to synchronous context managers too

In this demo I'd expect to be able to print: "handled attribute error"

importasyncioimportcontextlibasyncdefchild(sock):try:withcontextlib.closing(sock):awaitasyncio.sleep(2)exceptExceptionase:print(f"child task got error:{type(e)=}{e=}")raiseclassSock:asyncdefaclose(self):awaitasyncio.sleep(1)asyncdefmain():try:sock=Sock()asyncwithasyncio.timeout(1):asyncwithasyncio.TaskGroup()astg:# Make two concurrent calls to child()tg.create_task(child(Sock()))tg.create_task(child(Sock()))asyncwithcontextlib.aclosing(sock):awaitasyncio.sleep(2)    except*AttributeError:print("handled attribute error")asyncio.run(main())

Metadata

Metadata

Assignees

No one assigned

    Labels

    3.11only security fixes3.12only security fixestopic-asynciotype-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp