summaryrefslogtreecommitdiffstats
path: root/Lib/heapq.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-18 22:47:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-18 22:47:04 (GMT)
commitb6e112bd952c2023b95212364ed07ad9c235da41 (patch)
tree241ade7773cb3a0d1dc7114adbf334840642ed8e /Lib/heapq.py
parent910f216260b812cff42ab60ed7413a7df1f2a72f (diff)
downloadcpython-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.py2
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).