mirror of
https://github.com/python/cpython.git
synced 2025-09-09 18:32:22 +00: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:
parent
3eeb8c8906
commit
a12e8ffb49
4 changed files with 4 additions and 1 deletions
|
@ -34,6 +34,7 @@ __all__ = (base_events.__all__ +
|
|||
streams.__all__ +
|
||||
subprocess.__all__ +
|
||||
tasks.__all__ +
|
||||
taskgroups.__all__ +
|
||||
threads.__all__ +
|
||||
timeouts.__all__ +
|
||||
transports.__all__)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# license: PSFL.
|
||||
|
||||
|
||||
__all__ = ["TaskGroup"]
|
||||
__all__ = ("TaskGroup",)
|
||||
|
||||
from . import events
|
||||
from . import exceptions
|
||||
|
|
|
@ -1946,6 +1946,7 @@ Colin Watson
|
|||
David Watson
|
||||
Aaron Watters
|
||||
Alex Waygood
|
||||
James Webber
|
||||
Russel Webber
|
||||
Henrik Weber
|
||||
Leon Weber
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Added `asyncio.taskgroups.__all__` to `asyncio.__all__` for export in star imports.
|
Loading…
Add table
Add a link
Reference in a new issue