mirror of https://github.com/python/cpython
gh-96471: Add ShutDown to queue.py '__all__' (#116699)
This commit is contained in:
parent
e82f6dfae5
commit
ba82a241ac
10
Lib/queue.py
10
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:
|
||||
|
|
Loading…
Reference in New Issue