diff options
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 b128219337..cae94be911 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" - - |