I have an argument that is an internal debug flag and shouldn't be run by users who don't know what they are doing. I realize that hiding it is in essence security by obscurity, but I'm not concerned about malice so much as incompetence. Optparse had a SUPPRESS_HELP option, is there and argparse equivalent?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 4 down vote accepted
parser.add_argument('--secret', help=argparse.SUPPRESS)

From here: http://argparse.googlecode.com/svn/trunk/doc/argparse-vs-optparse.html

First Google result for argparse suppress_help, by the way.

link|improve this answer
1  
yeah, I just found it, but you answered quicker than I could, I wonder why it's not in the argparse stdlib docs – tolomea Aug 18 '11 at 5:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.