8000 gh-96471: Add ShutDown to queue.py '__all__' (#116699) · adorilson/cpython@cd1bd10 · GitHub
[go: up one dir, main page]

Skip to content

Commit cd1bd10

Browse files
EpicWinkadorilson
authored andcommitted
pythongh-96471: Add ShutDown to queue.py '__all__' (python#116699)
1 parent fa5b5d7 commit cd1bd10

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Lib/queue.py

Lines changed: 9 additions & 1 deletion
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)
0