summaryrefslogtreecommitdiffstats
path: root/Lib/queue.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/queue.py')
-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: