[Python-checkins] r81578 - python/trunk/Lib/getopt.py

benjamin.peterson python-checkins at python.org
Fri May 28 04:12:37 CEST 2010


Author: benjamin.peterson
Date: Fri May 28 04:12:36 2010
New Revision: 81578

Log:
remove non-ascii coding per PEP 8

Modified:
   python/trunk/Lib/getopt.py

Modified: python/trunk/Lib/getopt.py
==============================================================================
--- python/trunk/Lib/getopt.py	(original)
+++ python/trunk/Lib/getopt.py	Fri May 28 04:12:36 2010
@@ -1,4 +1,3 @@
-# -*- coding: iso-8859-1 -*-
 """Parser for command line options.
 
 This module helps scripts to parse the command line arguments in
@@ -20,7 +19,7 @@
 # Gerrit Holl <gerrit at nl.linux.org> moved the string-based exceptions
 # to class-based exceptions.
 #
-# Peter Åstrand <astrand at lysator.liu.se> added gnu_getopt().
+# Peter Astrand <astrand at lysator.liu.se> added gnu_getopt().
 #
 # TODO for gnu_getopt():
 #


More information about the Python-checkins mailing list