summaryrefslogtreecommitdiffstats
path: root/Doc/lib/caseless.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-07-18 06:25:50 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-07-18 06:25:50 (GMT)
commit3d7d372ce326602b274f44338168688eeb907a3b (patch)
tree221b3b3ae862fe0b1d068efb97700b55bf0018cf /Doc/lib/caseless.py
parent182b5aca27d376b08a2904bed42b751496f932f3 (diff)
downloadcpython-3d7d372ce326602b274f44338168688eeb907a3b.zip
cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.gz
cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.bz2
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Doc/lib/caseless.py')
-rwxr-xr-xDoc/lib/caseless.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/lib/caseless.py b/Doc/lib/caseless.py
index b128219..cae94be 100755
--- a/Doc/lib/caseless.py
+++ b/Doc/lib/caseless.py
@@ -45,7 +45,7 @@ if __name__ == "__main__":
print "ok: got OptionConflictError for -H"
else:
print "not ok: no conflict between -h and -H"
-
+
parser.add_option("-f", "--file", dest="file")
#print repr(parser.get_option("-f"))
#print repr(parser.get_option("-F"))
@@ -58,5 +58,3 @@ if __name__ == "__main__":
(options, args) = parser.parse_args(["-F", "bar"])
assert options.file == "bar", options.file
print "ok: case insensitive short options work"
-
-