[Python-checkins] python/dist/src/Lib heapq.py,1.5,1.6

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 02 Aug 2002 13:23:58 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv24770

Modified Files:
	heapq.py 
Log Message:
Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's
a c-cedilla in one of the docstrings.


Index: heapq.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/heapq.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** heapq.py	2 Aug 2002 20:09:14 -0000	1.5
--- heapq.py	2 Aug 2002 20:23:56 -0000	1.6
***************
*** 1,2 ****
--- 1,4 ----
+ # -*- coding: Latin-1 -*-
+ 
  """Heap queue algorithm (a.k.a. priority queue).