From: Mark Dickinson Date: Sun, 4 Jul 2010 19:23:49 +0000 (+0000) Subject: Remove coding cookie from heapq.py. X-Git-Tag: v3.2a1~312 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4a17a8440cbee52df5a1cae508a8f722007e516;p=thirdparty%2FPython%2Fcpython.git Remove coding cookie from heapq.py. --- diff --git a/Lib/heapq.py b/Lib/heapq.py index b74818e2ba72..464663a78a53 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -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,