[Python-checkins] r74273 - python/branches/release26-maint/Lib/heapq.py

raymond.hettinger python-checkins at python.org
Fri Jul 31 22:21:08 CEST 2009


Author: raymond.hettinger
Date: Fri Jul 31 22:21:08 2009
New Revision: 74273

Log:
Fix typo (already fixed in 2.7).

Modified:
   python/branches/release26-maint/Lib/heapq.py

Modified: python/branches/release26-maint/Lib/heapq.py
==============================================================================
--- python/branches/release26-maint/Lib/heapq.py	(original)
+++ python/branches/release26-maint/Lib/heapq.py	Fri Jul 31 22:21:08 2009
@@ -195,7 +195,7 @@
     heapify(result)
     _heappushpop = heappushpop
     for elem in it:
-        heappushpop(result, elem)
+        _heappushpop(result, elem)
     result.sort(reverse=True)
     return result
 


More information about the Python-checkins mailing list