Skip to content

Commit 0511881

Browse files
authored
queue: add ShutDown to __all__ (#11974)
1 parent 87edeb6 commit 0511881

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/queue.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ if sys.version_info >= (3, 9):
66
from types import GenericAlias
77

88
__all__ = ["Empty", "Full", "Queue", "PriorityQueue", "LifoQueue", "SimpleQueue"]
9+
if sys.version_info >= (3, 13):
10+
__all__ += ["ShutDown"]
911

1012
_T = TypeVar("_T")
1113

0 commit comments

Comments
 (0)