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

Method __init__

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

Source from the content-addressed store, hash-verified

1206class _CountAction(Action):
1207
1208 def __init__(self,
1209 option_strings,
1210 dest,
1211 default=None,
1212 required=False,
1213 help=None,
1214 deprecated=False):
1215 super(_CountAction, self).__init__(
1216 option_strings=option_strings,
1217 dest=dest,
1218 nargs=0,
1219 default=default,
1220 required=required,
1221 help=help,
1222 deprecated=deprecated)
1223
1224 def __call__(self, parser, namespace, values, option_string=None):
1225 count = getattr(namespace, self.dest, None)

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected