0
0
mirror of https://github.com/python/cpython.git synced 2024-11-21 21:09:37 +01:00

gh-106075: add asyncio.taskgroups.__all__ to asyncio.__all__ (#106090)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
This commit is contained in:
James Webber 2023-06-26 03:54:03 -04:00 committed by GitHub
parent 3eeb8c8906
commit a12e8ffb49
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__ +
subprocess.__all__ +
tasks.__all__ +
taskgroups.__all__ +
threads.__all__ +
timeouts.__all__ +
transports.__all__)

View File

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

View File

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

View File

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