summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-02 16:50:58 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-02 16:50:58 (GMT)
commit37c3b2788be1b3eea69fac9a8517459478afb6fd (patch)
tree52fc84494ac5e43c3017b7a480a33b655a014463
parent0a82438859a39c46a356c798c7bc84a08b0dc8b6 (diff)
downloadcpython-37c3b2788be1b3eea69fac9a8517459478afb6fd.zip
cpython-37c3b2788be1b3eea69fac9a8517459478afb6fd.tar.gz
cpython-37c3b2788be1b3eea69fac9a8517459478afb6fd.tar.bz2
Add Kevin O'Connor, author of the heapq code.
-rw-r--r--Lib/heapq.py2
-rw-r--r--Misc/ACKS1
2 files changed, 3 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]
diff --git a/Misc/ACKS b/Misc/ACKS
index 6e48457..650f8ff 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -346,6 +346,7 @@ Joe Norton
Neal Norwitz
Jeffrey Ollie
Nigel O'Brian
+Kevin O'Connor
Tim O'Malley
Denis S. Otkidach
Piet van Oostrum