From 0511881668af3e3d9d5e503c7fce01a3d1abb3f1 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sat, 18 May 2024 15:06:42 -0700 Subject: [PATCH] queue: add ShutDown to __all__ (#11974) --- stdlib/queue.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/queue.pyi b/stdlib/queue.pyi index 07f953ff0..16643c99d 100644 --- a/stdlib/queue.pyi +++ b/stdlib/queue.pyi @@ -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")