diff options
author | Guido van Rossum <guido@python.org> | 2002-08-02 22:01:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-02 22:01:37 (GMT) |
commit | fbb299226d486b63459c0ec084e191c7eee6ddb9 (patch) | |
tree | e349d6ff27f58cee3c8ad698b6dd4e569de996ea /Lib/heapq.py | |
parent | 28c25527c25babcf31e4b00dea316ca6f8612079 (diff) | |
download | cpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.zip cpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.tar.gz cpython-fbb299226d486b63459c0ec084e191c7eee6ddb9.tar.bz2 |
Augment credits.
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 2 |
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 |