]> granicus.if.org Git - python/commitdiff
Add __all__ .
authorBrett Cannon <bcannon@gmail.com>
Tue, 1 Jul 2003 05:34:27 +0000 (05:34 +0000)
committerBrett Cannon <bcannon@gmail.com>
Tue, 1 Jul 2003 05:34:27 +0000 (05:34 +0000)
Lib/Queue.py

index 83a8318f52f691fc936a96f74444d0c31316638e..980aee619ddce61698da5cd2eb562d33be2ed00d 100644 (file)
@@ -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