MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

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

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected