queue: add ShutDown to __all__ (#11974)

This commit is contained in:
Shantanu
2024-05-18 15:06:42 -07:00
committed by GitHub
parent 87edeb65d8
commit 0511881668

View File

@@ -6,6 +6,8 @@ if sys.version_info >= (3, 9):
from types import GenericAlias
__all__ = ["Empty", "Full", "Queue", "PriorityQueue", "LifoQueue", "SimpleQueue"]
if sys.version_info >= (3, 13):
__all__ += ["ShutDown"]
_T = TypeVar("_T")