Raise a catchable error instead of exiting.
(self, message)
| 157 | conflict_handler=conflict_handler, add_help=add_help) |
| 158 | |
| 159 | def error(self, message): |
| 160 | """ Raise a catchable error instead of exiting. |
| 161 | """ |
| 162 | raise UsageError(message) |
| 163 | |
| 164 | def parse_argstring(self, argstring, *, partial=False): |
| 165 | """ Split a string into an argument list and parse that argument list. |
no test coverage detected