diff options
author | Éric Araujo <merwok@netwok.org> | 2011-04-20 17:24:09 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-04-20 17:24:09 (GMT) |
commit | 37e6c54ba122703a0162dd44cf3eac78c46c8bdd (patch) | |
tree | 1453d6434ce4859948c382ae46cd12034e46fc8a /Lib/heapq.py | |
parent | 6f205ed37eb4b785b60081f957d515ca16b0db47 (diff) | |
parent | 5c1a0c969d82670ba7aac7647b9828f4df85c1bd (diff) | |
download | cpython-37e6c54ba122703a0162dd44cf3eac78c46c8bdd.zip cpython-37e6c54ba122703a0162dd44cf3eac78c46c8bdd.tar.gz cpython-37e6c54ba122703a0162dd44cf3eac78c46c8bdd.tar.bz2 |
Merge 3.1
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py index 3fe6b46..f756035 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -170,7 +170,7 @@ def heappushpop(heap, item): return item def heapify(x): - """Transform list into a heap, in-place, in O(len(heap)) time.""" + """Transform list into a heap, in-place, in O(len(x)) time.""" n = len(x) # Transform bottom-up. The largest index there's any point to looking at # is the largest with a child index in-range, so must have 2*i + 1 < n, @@ -360,7 +360,7 @@ def nsmallest(n, iterable, key=None): return [min(chain(head, it))] return [min(chain(head, it), key=key)] - # When n>=size, it's faster to use sort() + # When n>=size, it's faster to use sorted() try: size = len(iterable) except (TypeError, AttributeError): @@ -398,7 +398,7 @@ def nlargest(n, iterable, key=None): return [max(chain(head, it))] return [max(chain(head, it), key=key)] - # When n>=size, it's faster to use sort() + # When n>=size, it's faster to use sorted() try: size = len(iterable) except (TypeError, AttributeError): |