(self, action, conflicting_actions)
| 1797 | conflict_handler(action, confl_optionals) |
| 1798 | |
| 1799 | def _handle_conflict_error(self, action, conflicting_actions): |
| 1800 | message = ngettext('conflicting option string: %s', |
| 1801 | 'conflicting option strings: %s', |
| 1802 | len(conflicting_actions)) |
| 1803 | conflict_string = ', '.join([option_string |
| 1804 | for option_string, action |
| 1805 | in conflicting_actions]) |
| 1806 | raise ArgumentError(action, message % conflict_string) |
| 1807 | |
| 1808 | def _handle_conflict_resolve(self, action, conflicting_actions): |
| 1809 |
nothing calls this directly
no test coverage detected