summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-03-05 07:11:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-03-05 07:11:37 (GMT)
commitf7f8972a59b5ca93a07653da041b375a15fb3755 (patch)
tree0cca0b45b7772fb39f3517cea4cbd74e706c7fad /Lib
parente516604f7c83eeba7737347cf2d58d86c5cd5361 (diff)
parent2e8d9a799d9827faa4b9bcd981959422b63e629e (diff)
downloadcpython-f7f8972a59b5ca93a07653da041b375a15fb3755.zip
cpython-f7f8972a59b5ca93a07653da041b375a15fb3755.tar.gz
cpython-f7f8972a59b5ca93a07653da041b375a15fb3755.tar.bz2
merge
Diffstat (limited to 'Lib')
-rw-r--r--Lib/heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 6859821..00b429c 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -320,7 +320,7 @@ def _siftdown_max(heap, startpos, pos):
heap[pos] = newitem
def _siftup_max(heap, pos):
- 'Minheap variant of _siftup'
+ 'Maxheap variant of _siftup'
endpos = len(heap)
startpos = pos
newitem = heap[pos]