[Python-checkins] python/dist/src/Lib heapq.py,1.15,1.16

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 29 Oct 2002 22:15:55 -0800


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

Modified Files:
	heapq.py 
Log Message:
Added __all__.


Index: heapq.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/heapq.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** heapq.py	11 Aug 2002 18:28:09 -0000	1.15
--- heapq.py	30 Oct 2002 06:15:53 -0000	1.16
***************
*** 127,130 ****
--- 127,132 ----
  """
  
+ __all__ = ['heappush', 'heappop', 'heapify', 'heapreplace']
+ 
  def heappush(heap, item):
      """Push item onto heap, maintaining the heap invariant."""