summaryrefslogtreecommitdiffstats
path: root/Lib/heapq.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r--Lib/heapq.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 4654f5e..cdba693 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -25,6 +25,8 @@ without surprises: heap[0] is the smallest item, and heap.sort()
maintains the heap invariant!
"""
+# Code by Kevin O'Connor
+
__about__ = """Heap queues
[explanation by François Pinard]