(self, text, width, indent)
| 689 | return textwrap.wrap(text, width) |
| 690 | |
| 691 | def _fill_text(self, text, width, indent): |
| 692 | text = self._whitespace_matcher.sub(' ', text).strip() |
| 693 | import textwrap |
| 694 | return textwrap.fill(text, width, |
| 695 | initial_indent=indent, |
| 696 | subsequent_indent=indent) |
| 697 | |
| 698 | def _get_help_string(self, action): |
| 699 | return action.help |
no test coverage detected