Kaydet (Commit) b4a17a84 authored tarafından Mark Dickinson's avatar Mark Dickinson

Remove coding cookie from heapq.py.

üst 6a4e3c5f
# -*- 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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment