diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-18 22:47:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-18 22:47:04 (GMT) |
commit | b6e112bd952c2023b95212364ed07ad9c235da41 (patch) | |
tree | 241ade7773cb3a0d1dc7114adbf334840642ed8e /Lib/heapq.py | |
parent | 910f216260b812cff42ab60ed7413a7df1f2a72f (diff) | |
download | cpython-b6e112bd952c2023b95212364ed07ad9c235da41.zip cpython-b6e112bd952c2023b95212364ed07ad9c235da41.tar.gz cpython-b6e112bd952c2023b95212364ed07ad9c235da41.tar.bz2 |
fix encoding cookie case
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py index 3233cdb..02c7944 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -1,4 +1,4 @@ -# -*- coding: Latin-1 -*- +# -*- coding: latin-1 -*- """Heap queue algorithm (a.k.a. priority queue). |