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

Method add_mutually_exclusive_group

Lib/argparse.py:1566–1569  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

1564 return group
1565
1566 def add_mutually_exclusive_group(self, **kwargs):
1567 group = _MutuallyExclusiveGroup(self, **kwargs)
1568 self._mutually_exclusive_groups.append(group)
1569 return group
1570
1571 def _add_action(self, action):
1572 # resolve any conflicts

Callers 15

parse_argsFunction · 0.45
mainFunction · 0.45
_parse_argsFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
setUpMethod · 0.45
test_groups_parentsMethod · 0.45
test_helpMethod · 0.45
test_optional_orderMethod · 0.45

Calls 2

appendMethod · 0.45

Tested by 15

setUpMethod · 0.36
test_groups_parentsMethod · 0.36
test_helpMethod · 0.36
test_optional_orderMethod · 0.36
get_parserMethod · 0.36
get_parserMethod · 0.36
get_parserMethod · 0.36