summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Webber <jamestwebber@users.noreply.github.com>2023-06-26 07:54:03 (GMT)
committerGitHub <noreply@github.com>2023-06-26 07:54:03 (GMT)
commita12e8ffb49e05a1d1874389318911ce9685db232 (patch)
treefe679ed1b8a184c30ab9fcdd07b4872183ca703a
parent3eeb8c89063d5ac22c0b1d26e4ae2fd12c149650 (diff)
downloadcpython-a12e8ffb49e05a1d1874389318911ce9685db232.zip
cpython-a12e8ffb49e05a1d1874389318911ce9685db232.tar.gz
cpython-a12e8ffb49e05a1d1874389318911ce9685db232.tar.bz2
gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (#106090)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-rw-r--r--Lib/asyncio/__init__.py1
-rw-r--r--Lib/asyncio/taskgroups.py2
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2023-06-25-12-28-55.gh-issue-106075.W7tMRb.rst1
4 files changed, 4 insertions, 1 deletions
diff --git a/Lib/asyncio/__init__.py b/Lib/asyncio/__init__.py
index fed16ec7c6..03165a4 100644
--- a/Lib/asyncio/__init__.py
+++ b/Lib/asyncio/__init__.py
@@ -34,6 +34,7 @@ __all__ = (base_events.__all__ +
streams.__all__ +
subprocess.__all__ +
tasks.__all__ +
+ taskgroups.__all__ +
threads.__all__ +
timeouts.__all__ +
transports.__all__)
diff --git a/Lib/asyncio/taskgroups.py b/Lib/asyncio/taskgroups.py
index bf92bba..24238c4 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
diff --git a/Misc/ACKS b/Misc/ACKS
index be87556..454b631 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1946,6 +1946,7 @@ Colin Watson
David Watson
Aaron Watters
Alex Waygood
+James Webber
Russel Webber
Henrik Weber
Leon Weber
diff --git a/Misc/NEWS.d/next/Library/2023-06-25-12-28-55.gh-issue-106075.W7tMRb.rst b/Misc/NEWS.d/next/Library/2023-06-25-12-28-55.gh-issue-106075.W7tMRb.rst
new file mode 100644
index 0000000..d268715
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-06-25-12-28-55.gh-issue-106075.W7tMRb.rst
@@ -0,0 +1 @@
+Added `asyncio.taskgroups.__all__` to `asyncio.__all__` for export in star imports.