From 648a39a1f33741632a8fce6a782d6080c40a681e Mon Sep 17 00:00:00 2001 From: baloan Date: Wed, 2 Mar 2011 22:36:34 +0100 Subject: [PATCH] minor --HG-- branch : aspn --- src/heapq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/heapq.py b/src/heapq.py index 7629327..9f571d2 100644 --- a/src/heapq.py +++ b/src/heapq.py @@ -14,7 +14,7 @@ class Heap(list): heapify = heapq.heapify def pushpop(self, item): - "Push the item onto the heap and then pop the smallest value" + """Push the item onto the heap and then pop the smallest value""" if self and self[0] < item: return heapq.heapreplace(self, item) return item