summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-05-28 02:12:36 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-05-28 02:12:36 (GMT)
commit29d438c96c6c71d55002197c86f0c77ea18cc19a (patch)
tree202a6be776b061679757bf23848e63e2b5af97ba /Lib
parent03883624a4c8bb07d7e4b55a24be6aaf8edd42c5 (diff)
downloadcpython-29d438c96c6c71d55002197c86f0c77ea18cc19a.zip
cpython-29d438c96c6c71d55002197c86f0c77ea18cc19a.tar.gz
cpython-29d438c96c6c71d55002197c86f0c77ea18cc19a.tar.bz2
remove non-ascii coding per PEP 8
Diffstat (limited to 'Lib')
-rw-r--r--Lib/getopt.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py
index 7248f08..66f4827 100644
--- a/Lib/getopt.py
+++ b/Lib/getopt.py
@@ -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 @@ option involved with the exception.
# Gerrit Holl <gerrit@nl.linux.org> moved the string-based exceptions
# to class-based exceptions.
#
-# Peter Åstrand <astrand@lysator.liu.se> added gnu_getopt().
+# Peter Astrand <astrand@lysator.liu.se> added gnu_getopt().
#
# TODO for gnu_getopt():
#