Skip to content

Commit

Permalink
gh-106075: add asyncio.taskgroups.__all__ to asyncio.__all__ (#10…
Browse files Browse the repository at this point in the history
…6090)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
  • Loading branch information
2 people authored and pull[bot] committed Nov 12, 2023
1 parent 1b23925 commit 9efe6fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Lib/asyncio/__init__.py
Expand Up @@ -34,6 +34,7 @@
streams.__all__ +
subprocess.__all__ +
tasks.__all__ +
taskgroups.__all__ +
threads.__all__ +
timeouts.__all__ +
transports.__all__)
Expand Down
2 changes: 1 addition & 1 deletion Lib/asyncio/taskgroups.py
Expand Up @@ -2,7 +2,7 @@
# license: PSFL.


__all__ = ["TaskGroup"]
__all__ = ("TaskGroup",)

from . import events
from . import exceptions
Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Expand Up @@ -1946,6 +1946,7 @@ Colin Watson
David Watson
Aaron Watters
Alex Waygood
James Webber
Russel Webber
Henrik Weber
Leon Weber
Expand Down
@@ -0,0 +1 @@
Added `asyncio.taskgroups.__all__` to `asyncio.__all__` for export in star imports.

0 comments on commit 9efe6fa

Please sign in to comment.