summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-02 22:01:37 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-02 22:01:37 (GMT)
commitfbb299226d486b63459c0ec084e191c7eee6ddb9 (patch)
treee349d6ff27f58cee3c8ad698b6dd4e569de996ea
parent28c25527c25babcf31e4b00dea316ca6f8612079 (diff)
downloadcpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.zip
cpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.tar.gz
cpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.tar.bz2
Augment credits.
-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