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

Method __init__

Lib/argparse.py:1209–1215  ·  view source on GitHub ↗
(self, name, aliases, help)

Source from the content-addressed store, hash-verified

1207 class _ChoicesPseudoAction(Action):
1208
1209 def __init__(self, name, aliases, help):
1210 metavar = dest = name
1211 if aliases:
1212 metavar += ' (%s)' % ', '.join(aliases)
1213 sup = super(_SubParsersAction._ChoicesPseudoAction, self)
1214 sup.__init__(option_strings=[], dest=dest, help=help,
1215 metavar=metavar)
1216
1217 def __init__(self,
1218 option_strings,

Callers

nothing calls this directly

Calls 3

superClass · 0.85
joinMethod · 0.45
__init__Method · 0.45

Tested by

no test coverage detected