./hello_world -c arg1 arg2 arg3
Is it possible to code so that option -c would only get two arguments (arg1 and arg2)?
parser.add_option("-c",
action="append2", <--- maybe something like that?
dest="verbose",
help="make lots of noise [default]")