]> granicus.if.org Git - python/commitdiff
Added __all__.
authorRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 06:15:53 +0000 (06:15 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 06:15:53 +0000 (06:15 +0000)
Lib/heapq.py

index 15b728a46594c3745f6238aabecbdd0baefa796f..fd7eea5307411e2c9b09fb1787638b110d083e46 100644 (file)
@@ -126,6 +126,8 @@ Believe me, real good tape sorts were quite spectacular to watch!
 From all times, sorting has always been a Great Art! :-)
 """
 
+__all__ = ['heappush', 'heappop', 'heapify', 'heapreplace']
+
 def heappush(heap, item):
     """Push item onto heap, maintaining the heap invariant."""
     heap.append(item)