Commit b42bb5a8 authored by Brett Cannon's avatar Brett Cannon

Add __all__ .

parent 20def8bb
No related merge requests found
......@@ -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
......
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