Method
__init__
(self,
option_strings,
dest=SUPPRESS,
default=SUPPRESS,
help=None,
deprecated=False)
Source from the content-addressed store, hash-verified
| 1231 | class _HelpAction(Action): |
| 1232 | |
| 1233 | def __init__(self, |
| 1234 | option_strings, |
| 1235 | dest=SUPPRESS, |
| 1236 | default=SUPPRESS, |
| 1237 | help=None, |
| 1238 | deprecated=False): |
| 1239 | super(_HelpAction, self).__init__( |
| 1240 | option_strings=option_strings, |
| 1241 | dest=dest, |
| 1242 | default=default, |
| 1243 | nargs=0, |
| 1244 | help=help, |
| 1245 | deprecated=deprecated) |
| 1246 | |
| 1247 | def __call__(self, parser, namespace, values, option_string=None): |
| 1248 | parser.print_help() |
Callers
nothing calls this directly
Tested by
no test coverage detected