]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-96471: Add ShutDown to queue.py '__all__' (#116699)
authorLaurie O <laurie_opperman@hotmail.com>
Wed, 13 Mar 2024 07:21:30 +0000 (17:21 +1000)
committerGitHub <noreply@github.com>
Wed, 13 Mar 2024 07:21:30 +0000 (07:21 +0000)
Lib/queue.py

index 18fad8df08e46968d56323aebd2739a10a4e742b..387ce5425879a44b9599467fa459467823400db5 100644 (file)
@@ -10,7 +10,15 @@ try:
 except ImportError:
     SimpleQueue = None
 
-__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue']
+__all__ = [
+    'Empty',
+    'Full',
+    'ShutDown',
+    'Queue',
+    'PriorityQueue',
+    'LifoQueue',
+    'SimpleQueue',
+]
 
 
 try: