diff options
author | James Webber <jamestwebber@users.noreply.github.com> | 2023-06-26 03:54:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 07:54:03 +0000 |
commit | a12e8ffb49e05a1d1874389318911ce9685db232 (patch) | |
tree | fe679ed1b8a184c30ab9fcdd07b4872183ca703a /Lib/asyncio/taskgroups.py | |
parent | 3eeb8c89063d5ac22c0b1d26e4ae2fd12c149650 (diff) | |
download | cpython-a12e8ffb49e05a1d1874389318911ce9685db232.tar.gz cpython-a12e8ffb49e05a1d1874389318911ce9685db232.zip |
gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (#106090)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Lib/asyncio/taskgroups.py')
-rw-r--r-- | Lib/asyncio/taskgroups.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/taskgroups.py b/Lib/asyncio/taskgroups.py index bf92bbaf0d0..24238c4f5f9 100644 --- a/Lib/asyncio/taskgroups.py +++ b/Lib/asyncio/taskgroups.py @@ -2,7 +2,7 @@ # license: PSFL. -__all__ = ["TaskGroup"] +__all__ = ("TaskGroup",) from . import events from . import exceptions |