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

Method __init__

Lib/argparse.py:1044–1058  ·  view source on GitHub ↗
(self,
                 option_strings,
                 dest,
                 default=True,
                 required=False,
                 help=None,
                 deprecated=False)

Source from the content-addressed store, hash-verified

1042class _StoreFalseAction(_StoreConstAction):
1043
1044 def __init__(self,
1045 option_strings,
1046 dest,
1047 default=True,
1048 required=False,
1049 help=None,
1050 deprecated=False):
1051 super(_StoreFalseAction, self).__init__(
1052 option_strings=option_strings,
1053 dest=dest,
1054 const=False,
1055 default=default,
1056 required=required,
1057 help=help,
1058 deprecated=deprecated)
1059
1060
1061class _AppendAction(Action):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected