https://github.com/python/cpython/commit/ba82a241ac7ddee7cad18e9994f8dd560c68df02
commit: ba82a241ac7ddee7cad18e9994f8dd560c68df02
branch: main
author: Laurie O <[email protected]>
committer: gvanrossum <[email protected]>
date: 2024-03-13T07:21:30Z
summary:

gh-96471: Add ShutDown to queue.py '__all__' (#116699)

files:
M Lib/queue.py

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:

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to