summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorLaurie O <laurie_opperman@hotmail.com>2024-03-13 07:21:30 (GMT)
committerGitHub <noreply@github.com>2024-03-13 07:21:30 (GMT)
commitba82a241ac7ddee7cad18e9994f8dd560c68df02 (patch)
tree2d1bcfacef536c1e86bb231bf4e2dc35c2dcde00 /Lib
parente82f6dfae54170559fe46000fe6db9fee2a21a96 (diff)
downloadcpython-ba82a241ac7ddee7cad18e9994f8dd560c68df02.zip
cpython-ba82a241ac7ddee7cad18e9994f8dd560c68df02.tar.gz
cpython-ba82a241ac7ddee7cad18e9994f8dd560c68df02.tar.bz2
gh-96471: Add ShutDown to queue.py '__all__' (#116699)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/queue.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/queue.py b/Lib/queue.py
index 18fad8d..387ce54 100644
--- a/Lib/queue.py
+++ b/Lib/queue.py
@@ -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: