[Python-checkins] python/dist/src/Lib getopt.py,1.22,1.23 inspect.py,1.36,1.37

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 04 Aug 2002 10:23:02 -0700


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

Modified Files:
	getopt.py inspect.py 
Log Message:
Add encoding declaration.


Index: getopt.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/getopt.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** getopt.py	26 Jul 2002 11:34:49 -0000	1.22
--- getopt.py	4 Aug 2002 17:22:59 -0000	1.23
***************
*** 1,2 ****
--- 1,3 ----
+ # -*- coding: iso-8859-1 -*-
  """Parser for command line options.
  

Index: inspect.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/inspect.py,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** inspect.py	2 Jun 2002 18:55:56 -0000	1.36
--- inspect.py	4 Aug 2002 17:22:59 -0000	1.37
***************
*** 1,2 ****
--- 1,3 ----
+ # -*- coding: iso-8859-1 -*-
  """Get useful information from live Python objects.