diff options
author | Guido van Rossum <guido@python.org> | 2002-08-02 20:23:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-02 20:23:56 (GMT) |
commit | 4b48d6b37c3e52721c18c33217b75ba864695109 (patch) | |
tree | b2cfd91ba25616075318065498f197cb79287245 /Lib/heapq.py | |
parent | 610291cf5a14370951149844a694669eda1986ac (diff) | |
download | cpython-4b48d6b37c3e52721c18c33217b75ba864695109.zip cpython-4b48d6b37c3e52721c18c33217b75ba864695109.tar.gz cpython-4b48d6b37c3e52721c18c33217b75ba864695109.tar.bz2 |
Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's
a c-cedilla in one of the docstrings.
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py index 91dc81b..cb22a19 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -1,3 +1,5 @@ +# -*- 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 |