(self, text, width)
| 641 | self._dedent() |
| 642 | |
| 643 | def _split_lines(self, text, width): |
| 644 | text = self._whitespace_matcher.sub(' ', text).strip() |
| 645 | return _textwrap.wrap(text, width) |
| 646 | |
| 647 | def _fill_text(self, text, width, indent): |
| 648 | text = self._whitespace_matcher.sub(' ', text).strip() |