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

Method __init__

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

Source from the content-addressed store, hash-verified

1118class _StoreFalseAction(_StoreConstAction):
1119
1120 def __init__(self,
1121 option_strings,
1122 dest,
1123 default=True,
1124 required=False,
1125 help=None,
1126 deprecated=False):
1127 super(_StoreFalseAction, self).__init__(
1128 option_strings=option_strings,
1129 dest=dest,
1130 const=False,
1131 default=default,
1132 required=required,
1133 help=help,
1134 deprecated=deprecated)
1135
1136
1137class _AppendAction(Action):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected