commit | 8299f3280cf34e03285a3a448c60da9a62463d70 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Fri Jul 31 20:21:08 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Fri Jul 31 20:21:08 2009 +0000 |
tree | d91209a3203216b6bf4ea45f9b84b58c5664cda7 | |
parent | 272b749f55f5bb21a6ae9a19e01a9c5e6f00dd01 [diff] [blame] |
Fix typo (already fixed in 2.7).
diff --git a/Lib/heapq.py b/Lib/heapq.py index c13d650..b36aabd 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py
@@ -195,7 +195,7 @@ heapify(result) _heappushpop = heappushpop for elem in it: - heappushpop(result, elem) + _heappushpop(result, elem) result.sort(reverse=True) return result