gh-96471: Add ShutDown to queue.py '__all__' (#116699)

This commit is contained in:
Laurie O 2024-03-13 17:21:30 +10:00 committed by GitHub
parent e82f6dfae5
commit ba82a241ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,15 @@
except ImportError:
SimpleQueue = None
__all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue', 'SimpleQueue']
__all__ = [
'Empty',
'Full',
'ShutDown',
'Queue',
'PriorityQueue',
'LifoQueue',
'SimpleQueue',
]
try: