diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:25:50 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-18 06:25:50 (GMT) |
commit | 3d7d372ce326602b274f44338168688eeb907a3b (patch) | |
tree | 221b3b3ae862fe0b1d068efb97700b55bf0018cf /Doc/lib/caseless.py | |
parent | 182b5aca27d376b08a2904bed42b751496f932f3 (diff) | |
download | cpython-3d7d372ce326602b274f44338168688eeb907a3b.zip cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.gz cpython-3d7d372ce326602b274f44338168688eeb907a3b.tar.bz2 |
Whitespace normalization, via reindent.py.
Diffstat (limited to 'Doc/lib/caseless.py')
-rwxr-xr-x | Doc/lib/caseless.py | 4 |
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" - - |