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