mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
gh-96471: Add ShutDown to queue.py '__all__' (#116699)
This commit is contained in:
parent
e82f6dfae5
commit
ba82a241ac
1 changed files with 9 additions and 1 deletions
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…
Add table
Add a link
Reference in a new issue