]> granicus.if.org Git - python/commitdiff
Remove coding cookie from heapq.py.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 4 Jul 2010 19:23:49 +0000 (19:23 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 4 Jul 2010 19:23:49 +0000 (19:23 +0000)
Lib/heapq.py

index b74818e2ba7282295feacd71b1852ed3f0366e34..464663a78a5360f007ddfc25592e54ea9d52bee8 100644 (file)
@@ -1,5 +1,3 @@
-# -*- coding: latin-1 -*-
-
 """Heap queue algorithm (a.k.a. priority queue).
 
 Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
@@ -34,7 +32,7 @@ maintains the heap invariant!
 
 __about__ = """Heap queues
 
-[explanation by François Pinard]
+[explanation by François Pinard]
 
 Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for
 all k, counting elements from 0.  For the sake of comparison,