Whitespace normalization, via reindent.py.

This commit is contained in:
Tim Peters 2004-07-18 06:25:50 +00:00
parent 182b5aca27
commit 3d7d372ce3
13 changed files with 49 additions and 53 deletions

View file

@ -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"