diff options
Diffstat (limited to 'Lib/Queue.py')
-rw-r--r-- | Lib/Queue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/Queue.py b/Lib/Queue.py index 0e6bbf0..050a966 100644 --- a/Lib/Queue.py +++ b/Lib/Queue.py @@ -1,5 +1,7 @@ """A multi-producer, multi-consumer queue.""" +__all__ = ["Queue","Empty","Full"] + class Empty(Exception): "Exception raised by Queue.get(block=0)/get_nowait()." pass |