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

Method __init__

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

Source from the content-addressed store, hash-verified

1099class _StoreTrueAction(_StoreConstAction):
1100
1101 def __init__(self,
1102 option_strings,
1103 dest,
1104 default=False,
1105 required=False,
1106 help=None,
1107 deprecated=False):
1108 super(_StoreTrueAction, self).__init__(
1109 option_strings=option_strings,
1110 dest=dest,
1111 const=True,
1112 deprecated=deprecated,
1113 required=required,
1114 help=help,
1115 default=default)
1116
1117
1118class _StoreFalseAction(_StoreConstAction):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected