[Python-checkins] python/dist/src/Lib Queue.py,1.18,1.19

bcannon@users.sourceforge.net bcannon@users.sourceforge.net
Mon, 30 Jun 2003 22:34:29 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv15225a/Lib

Modified Files:
	Queue.py 
Log Message:
Add __all__ .

Index: Queue.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/Queue.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** Queue.py	30 Dec 2002 22:36:09 -0000	1.18
--- Queue.py	1 Jul 2003 05:34:27 -0000	1.19
***************
*** 3,6 ****
--- 3,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()."