(self, kwargs, default=None)
| 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 |
no test coverage detected