(self, text, width, indent)
| 746 | return textwrap.wrap(text, width) |
| 747 | |
| 748 | def _fill_text(self, text, width, indent): |
| 749 | text = self._whitespace_matcher.sub(' ', text).strip() |
| 750 | import textwrap |
| 751 | return textwrap.fill(text, width, |
| 752 | initial_indent=indent, |
| 753 | subsequent_indent=indent) |
| 754 | |
| 755 | def _get_help_string(self, action): |
| 756 | return action.help |
no test coverage detected