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 83a8318..980aee6 100644 --- a/Lib/Queue.py +++ b/Lib/Queue.py @@ -2,6 +2,8 @@ from time import time as _time, sleep as _sleep +__all__ = ['Empty', 'Full', 'Queue'] + class Empty(Exception): "Exception raised by Queue.get(block=0)/get_nowait()." pass |