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

Method _pop_action_class

Lib/argparse.py:1690–1692  ·  view source on GitHub ↗
(self, kwargs, default=None)

Source from the content-addressed store, hash-verified

1688 return dict(kwargs, dest=dest, option_strings=option_strings)
1689
1690 def _pop_action_class(self, kwargs, default=None):
1691 action = kwargs.pop('action', default)
1692 return self._registry_get('action', action, action)
1693
1694 def _get_handler(self):
1695 # determine function from conflict handler string

Callers 2

add_argumentMethod · 0.95
add_subparsersMethod · 0.80

Calls 2

_registry_getMethod · 0.95
popMethod · 0.45

Tested by

no test coverage detected