[issue13818] argparse: -h listening required options under optional arguments

2012-07-21 Thread Steven Bethard
Changes by Steven Bethard steven.beth...@gmail.com: -- resolution: - duplicate status: open - closed superseder: - argparse: Default Help Message Lists Required Args As Optional ___ Python tracker rep...@bugs.python.org

[issue13818] argparse: -h listening required options under optional arguments

2012-01-20 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +bethard stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13818 ___ ___

[issue13818] argparse: -h listening required options under optional arguments

2012-01-18 Thread Miguel Godinho
New submission from Miguel Godinho m...@miguelgodinho.com: Adding a 'required optional argument' as with: ``` app.add_argument('--dbsnp', required=True) ``` will still result on having that argument listed under the optional when the app is called with the help option (-h) Please note that