[3.12] gh-106075: add asyncio.taskgroups.__all__ to asyncio.__all__ (GH-106090) (#106098)

gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (GH-106090)
(cherry picked from commit a12e8ffb49)

Co-authored-by: James Webber <jamestwebber@users.noreply.github.com>
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2023-06-26 05:26:15 -07:00 committed by GitHub
parent 9e6f8d4615
commit 8d5d60f72d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 1 deletions

View file

@ -34,6 +34,7 @@ __all__ = (base_events.__all__ +
streams.__all__ + streams.__all__ +
subprocess.__all__ + subprocess.__all__ +
tasks.__all__ + tasks.__all__ +
taskgroups.__all__ +
threads.__all__ + threads.__all__ +
timeouts.__all__ + timeouts.__all__ +
transports.__all__) transports.__all__)

View file

@ -2,7 +2,7 @@
# license: PSFL. # license: PSFL.
__all__ = ["TaskGroup"] __all__ = ("TaskGroup",)
from . import events from . import events
from . import exceptions from . import exceptions

View file

@ -1946,6 +1946,7 @@ Colin Watson
David Watson David Watson
Aaron Watters Aaron Watters
Alex Waygood Alex Waygood
James Webber
Russel Webber Russel Webber
Henrik Weber Henrik Weber
Leon Weber Leon Weber

View file

@ -0,0 +1 @@
Added `asyncio.taskgroups.__all__` to `asyncio.__all__` for export in star imports.