summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index f30ce30..abdad03 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -28,7 +28,7 @@ without surprises: heap[0] is the smallest item, and heap.sort()
maintains the heap invariant!
"""
-# Code by Kevin O'Connor
+# Original code by Kevin O'Connor, augmented by Tim Peters
__about__ = """Heap queues