[issue9349] document argparse's help=SUPPRESS

2012-01-03 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 572ddf2770bc by Sandro Tosi in branch '3.2': Issue #9349: add argparse.SUPPRESS to help doc http://hg.python.org/cpython/rev/572ddf2770bc New changeset 17b7b856cbe8 by Sandro Tosi in branch '2.7': Issue #9349: add

[issue9349] document argparse's help=SUPPRESS

2012-01-03 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: -- nosy: +sandro.tosi resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9349

[issue9349] document argparse's help=SUPPRESS

2010-07-23 Thread Steven Bethard
New submission from Steven Bethard steven.beth...@gmail.com: Argparse supports silencing help for certain options using SUPPRESS. parser = argparse.ArgumentParser() parser.add_argument('--foo', help=argparse.SUPPRESS) parser.print_help() usage: [-h] optional arguments: -h, --help show