(self)
| 482 | self._lines.append(self._continuation_ws + line) |
| 483 | |
| 484 | def _maxlengths(self): |
| 485 | # The first line's length. |
| 486 | yield self._maxlen - len(self._current_line) |
| 487 | while True: |
| 488 | yield self._maxlen - self._continuation_ws_len |
| 489 | |
| 490 | def _ascii_split(self, fws, string, splitchars): |
| 491 | # The RFC 2822 header folding algorithm is simple in principle but |