summaryrefslogtreecommitdiffstats
path: root/Lib/getopt.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-16 21:35:23 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-07-16 21:35:23 (GMT)
commitc411dbaeee29dba87d5432a92fe76ea65d8e25f0 (patch)
tree45b71b45b9b5c2f2ddc1b644166208cd041f076c /Lib/getopt.py
parent8531b1b28de5356f1154e13704d499121ea72af8 (diff)
downloadcpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.zip
cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.gz
cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/getopt.py')
-rw-r--r--Lib/getopt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py
index c726217..46aa702 100644
--- a/Lib/getopt.py
+++ b/Lib/getopt.py
@@ -9,7 +9,7 @@ provides two functions and an exception:
getopt() -- Parse command line options
gnu_getopt() -- Like getopt(), but allow option and non-option arguments
-to be intermixed.
+to be intermixed.
GetoptError -- exception (class) raised with 'opt' attribute, which is the
option involved with the exception.
"""
@@ -103,7 +103,7 @@ def gnu_getopt(args, shortopts, longopts = []):
If the first character of the option string is `+', or if the
environment variable POSIXLY_CORRECT is set, then option
processing stops as soon as a non-option argument is encountered.
-
+
"""
opts = []