(self, kwargs, default=None)
| 1770 | return dict(kwargs, dest=dest, option_strings=option_strings) |
| 1771 | |
| 1772 | def _pop_action_class(self, kwargs, default=None): |
| 1773 | action = kwargs.pop('action', default) |
| 1774 | return self._registry_get('action', action, action) |
| 1775 | |
| 1776 | def _get_handler(self): |
| 1777 | # determine function from conflict handler string |
no test coverage detected