Method
__init__
(self,
option_strings,
dest=SUPPRESS,
default=SUPPRESS,
help=None)
Source from the content-addressed store, hash-verified
| 1107 | class _HelpAction(Action): |
| 1108 | |
| 1109 | def __init__(self, |
| 1110 | option_strings, |
| 1111 | dest=SUPPRESS, |
| 1112 | default=SUPPRESS, |
| 1113 | help=None): |
| 1114 | super(_HelpAction, self).__init__( |
| 1115 | option_strings=option_strings, |
| 1116 | dest=dest, |
| 1117 | default=default, |
| 1118 | nargs=0, |
| 1119 | help=help) |
| 1120 | |
| 1121 | def __call__(self, parser, namespace, values, option_string=None): |
| 1122 | parser.print_help() |
Callers
nothing calls this directly
Tested by
no test coverage detected