add asyncio.__all__ (#13038)

This commit is contained in:
Stephen Morton
2024-12-27 20:58:40 -08:00
committed by GitHub
parent abed9a8b55
commit 87267342d5
19 changed files with 1320 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ else:
class QueueEmpty(Exception): ...
class QueueFull(Exception): ...
# Keep asyncio.__all__ updated with any changes to __all__ here
if sys.version_info >= (3, 13):
__all__ = ("Queue", "PriorityQueue", "LifoQueue", "QueueFull", "QueueEmpty", "QueueShutDown")