[issue9349] document argparse's help=SUPPRESS

New submission from Steven Bethard steven.bethard@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 this help message and exit
This should be documented in the description of help=
http://docs.python.org/library/argparse.html#help
---------- assignee: docs@python components: Documentation messages: 111320 nosy: bethard, docs@python priority: normal severity: normal status: open title: document argparse's help=SUPPRESS versions: Python 2.7, Python 3.2
_______________________________________ Python tracker report@bugs.python.org http://bugs.python.org/issue9349 _______________________________________

Roundup Robot devnull@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 argparse.SUPPRESS to help doc http://hg.python.org/cpython/rev/17b7b856cbe8
---------- nosy: +python-dev
_______________________________________ Python tracker report@bugs.python.org http://bugs.python.org/issue9349 _______________________________________

Changes by Sandro Tosi sandro.tosi@gmail.com:
---------- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.3
_______________________________________ Python tracker report@bugs.python.org http://bugs.python.org/issue9349 _______________________________________
participants (3)
-
Roundup Robot
-
Sandro Tosi
-
Steven Bethard