Add __all__ .
This commit is contained in:
parent
20def8bb19
commit
b42bb5a88a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue