Commit b42bb5a8 authored by Brett Cannon's avatar Brett Cannon

Add __all__ .

parent 20def8bb
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
from time import time as _time, sleep as _sleep from time import time as _time, sleep as _sleep
__all__ = ['Empty', 'Full', 'Queue']
class Empty(Exception): class Empty(Exception):
"Exception raised by Queue.get(block=0)/get_nowait()." "Exception raised by Queue.get(block=0)/get_nowait()."
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment