diff options
author | Raymond Hettinger <python@rcn.com> | 2013-03-05 07:11:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-03-05 07:11:37 (GMT) |
commit | f7f8972a59b5ca93a07653da041b375a15fb3755 (patch) | |
tree | 0cca0b45b7772fb39f3517cea4cbd74e706c7fad /Lib | |
parent | e516604f7c83eeba7737347cf2d58d86c5cd5361 (diff) | |
parent | 2e8d9a799d9827faa4b9bcd981959422b63e629e (diff) | |
download | cpython-f7f8972a59b5ca93a07653da041b375a15fb3755.zip cpython-f7f8972a59b5ca93a07653da041b375a15fb3755.tar.gz cpython-f7f8972a59b5ca93a07653da041b375a15fb3755.tar.bz2 |
merge
Diffstat (limited to 'Lib')
-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 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] |