aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/taskgroups.py
diff options
context:
space:
mode:
authorJames Webber <jamestwebber@users.noreply.github.com>2023-06-26 03:54:03 -0400
committerGitHub <noreply@github.com>2023-06-26 07:54:03 +0000
commita12e8ffb49e05a1d1874389318911ce9685db232 (patch)
treefe679ed1b8a184c30ab9fcdd07b4872183ca703a /Lib/asyncio/taskgroups.py
parent3eeb8c89063d5ac22c0b1d26e4ae2fd12c149650 (diff)
downloadcpython-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.py2
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