Skip to content

Commit ba82a24

Browse files
authored
gh-96471: Add ShutDown to queue.py '__all__' (#116699)
1 parent e82f6df commit ba82a24

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Lib/queue.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@
1010
except ImportError:
1111
SimpleQueue = None
1212

13-
__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue']
13+
__all__ = [
14+
'Empty',
15+
'Full',
16+
'ShutDown',
17+
'Queue',
18+
'PriorityQueue',
19+
'LifoQueue',
20+
'SimpleQueue',
21+
]
1422

1523

1624
try:

0 commit comments

Comments
 (0)