diff options
Diffstat (limited to 'Lib/heapq.py')
-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 65f4155..09f996a 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -300,7 +300,7 @@ def _siftup(heap, pos): # If available, use C implementation try: - from _heapq import heappush, heappop, heapify, heapreplace + from _heapq import heappush, heappop, heapify, heapreplace, nlargest, nsmallest except ImportError: pass |