Method
__init__
(self,
option_strings,
dest=SUPPRESS,
default=SUPPRESS,
help=None)
Source from the content-addressed store, hash-verified
| 1001 | class _HelpAction(Action): |
| 1002 | |
| 1003 | def __init__(self, |
| 1004 | option_strings, |
| 1005 | dest=SUPPRESS, |
| 1006 | default=SUPPRESS, |
| 1007 | help=None): |
| 1008 | super(_HelpAction, self).__init__( |
| 1009 | option_strings=option_strings, |
| 1010 | dest=dest, |
| 1011 | default=default, |
| 1012 | nargs=0, |
| 1013 | help=help) |
| 1014 | |
| 1015 | def __call__(self, parser, namespace, values, option_string=None): |
| 1016 | parser.print_help() |
Callers
nothing calls this directly
Tested by
no test coverage detected