(self, text, width)
| 682 | self._dedent() |
| 683 | |
| 684 | def _split_lines(self, text, width): |
| 685 | text = self._whitespace_matcher.sub(' ', text).strip() |
| 686 | # The textwrap module is used only for formatting help. |
| 687 | # Delay its import for speeding up the common usage of argparse. |
| 688 | import textwrap |
| 689 | return textwrap.wrap(text, width) |
| 690 | |
| 691 | def _fill_text(self, text, width, indent): |
| 692 | text = self._whitespace_matcher.sub(' ', text).strip() |
no test coverage detected