MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/argparse.py:1157–1169  ·  view source on GitHub ↗
(self,
                 option_strings,
                 dest=SUPPRESS,
                 default=SUPPRESS,
                 help=None,
                 deprecated=False)

Source from the content-addressed store, hash-verified

1155class _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

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected