Method
__init__
(self,
option_strings,
dest=SUPPRESS,
default=SUPPRESS,
help=None,
deprecated=False)
Source from the content-addressed store, hash-verified
| 1155 | class _HelpAction(Action): |
| 1156 | |
| 1157 | def __init__(self, |
| 1158 | option_strings, |
| 1159 | dest=SUPPRESS, |
| 1160 | default=SUPPRESS, |
| 1161 | help=None, |
| 1162 | deprecated=False): |
| 1163 | super(_HelpAction, self).__init__( |
| 1164 | option_strings=option_strings, |
| 1165 | dest=dest, |
| 1166 | default=default, |
| 1167 | nargs=0, |
| 1168 | help=help, |
| 1169 | deprecated=deprecated) |
| 1170 | |
| 1171 | def __call__(self, parser, namespace, values, option_string=None): |
| 1172 | parser.print_help() |
Callers
nothing calls this directly
Tested by
no test coverage detected