From b0668cfd72214a6c6eae7effee49f5f144eaf9ab Mon Sep 17 00:00:00 2001 From: Laurie O Date: Wed, 13 Mar 2024 13:42:15 +1000 Subject: [PATCH] Add ShutDown to module '__all__' --- Lib/queue.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Lib/queue.py b/Lib/queue.py index 18fad8df08e469..387ce5425879a4 100644 --- a/Lib/queue.py +++ b/Lib/queue.py @@ -10,7 +10,15 @@ except ImportError: SimpleQueue = None -__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue'] +__all__ = [ + 'Empty', + 'Full', + 'ShutDown', + 'Queue', + 'PriorityQueue', + 'LifoQueue', + 'SimpleQueue', +] try: