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

Method add_argument_group

Lib/argparse.py:1637–1640  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1635 return self._add_action(action)
1636
1637 def add_argument_group(self, *args, **kwargs):
1638 group = _ArgumentGroup(self, *args, **kwargs)
1639 self._action_groups.append(group)
1640 return group
1641
1642 def add_mutually_exclusive_group(self, **kwargs):
1643 group = _MutuallyExclusiveGroup(self, **kwargs)

Callers 1

Calls 2

_ArgumentGroupClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected