Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4a17a8

Browse files
committed
Remove coding cookie from heapq.py.
1 parent 6a4e3c5 commit b4a17a8

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Lib/heapq.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: latin-1 -*-
2-
31
"""Heap queue algorithm (a.k.a. priority queue).
42
53
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
@@ -34,7 +32,7 @@
3432

3533
__about__ = """Heap queues
3634
37-
[explanation by François Pinard]
35+
[explanation by François Pinard]
3836
3937
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
4038
all k, counting elements from 0. For the sake of comparison,

0 commit comments

Comments
 (0)