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