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 753c3b7..9ab4c99 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -340,4 +340,4 @@ if __name__ == "__main__": sort = [] while heap: sort.append(heappop(heap)) - print sort + print(sort) |