We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87edeb6 commit 0511881Copy full SHA for 0511881
stdlib/queue.pyi
@@ -6,6 +6,8 @@ if sys.version_info >= (3, 9):
6
from types import GenericAlias
7
8
__all__ = ["Empty", "Full", "Queue", "PriorityQueue", "LifoQueue", "SimpleQueue"]
9
+if sys.version_info >= (3, 13):
10
+ __all__ += ["ShutDown"]
11
12
_T = TypeVar("_T")
13
0 commit comments