This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author denilsonsa
Recipients denilsonsa
Date 2011-09-20.22:28:26
SpamBayes Score 2.7449992e-06
Marked as misclassified No
Message-id <1316557707.22.0.0719652961871.issue13023@psf.upfronthosting.co.za>
In-reply-to
Content
In my script, I wanted two things at the same time:
1. Setting a formatter class so that the epilog would have the line breaks preserved.
2. Telling argparse to automatically display default values for all arguments.

Currently, both things are handled by the same configuration parameter: formatter_class
This means we can either pass argparse.RawDescriptionHelpFormatter or argparse.ArgumentDefaultsHelpFormatter, but not both.

I did a hackish workaround by subclassing both formatters, and passing my (empty) subclass to ArgumentParser. It works for now, but it might break on future versions.

The ideal solution, however, would have a native support for both features, or at least explicitly allowing subclassing.
Maybe ArgumentDefaultsHelpFormatter could be transformed into a simple boolean parameter passed to ArgumentParser object (and maybe also passed to add_argument() method), instead of being a formatter class.
History
Date User Action Args
2011-09-20 22:28:27denilsonsasetrecipients: + denilsonsa
2011-09-20 22:28:27denilsonsasetmessageid: <1316557707.22.0.0719652961871.issue13023@psf.upfronthosting.co.za>
2011-09-20 22:28:26denilsonsalinkissue13023 messages
2011-09-20 22:28:26denilsonsacreate