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

Method __init__

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

Source from the content-addressed store, hash-verified

1023class _StoreTrueAction(_StoreConstAction):
1024
1025 def __init__(self,
1026 option_strings,
1027 dest,
1028 default=False,
1029 required=False,
1030 help=None,
1031 deprecated=False):
1032 super(_StoreTrueAction, self).__init__(
1033 option_strings=option_strings,
1034 dest=dest,
1035 const=True,
1036 deprecated=deprecated,
1037 required=required,
1038 help=help,
1039 default=default)
1040
1041
1042class _StoreFalseAction(_StoreConstAction):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected