> I would like to have something like
>
> merged_parser = LoggingParser() + OtherParser()
>
> Which should create an argument parser with all the options composed.
>
I have used parent parsers.
http://docs.python.org/py3k/library/argparse.html#parents
I think in your case merged_parser would bec
I would like to have something like
merged_parser = LoggingParser() + OtherParser()
Which should create an argument parser with all the options composed.
Now for that I think I would need to subclass the argument, and something
fancy with the overloading.
The problem is that apparently there is