From 4b48d6b37c3e52721c18c33217b75ba864695109 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 2 Aug 2002 20:23:56 +0000 Subject: [PATCH] Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's a c-cedilla in one of the docstrings. --- Lib/heapq.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/heapq.py b/Lib/heapq.py index 91dc81bd51..cb22a194f0 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 -- 2.50.1