Raise a catchable error instead of exiting.
(self, message)
| 125 | conflict_handler=conflict_handler, add_help=add_help) |
| 126 | |
| 127 | def error(self, message): |
| 128 | """ Raise a catchable error instead of exiting. |
| 129 | """ |
| 130 | raise UsageError(message) |
| 131 | |
| 132 | def parse_argstring(self, argstring): |
| 133 | """ Split a string into an argument list and parse that argument list. |
no test coverage detected