Strip whitespace from end of text.
(self)
| 660 | return count |
| 661 | |
| 662 | def rstrip(self) -> None: |
| 663 | """Strip whitespace from end of text.""" |
| 664 | self.plain = self.plain.rstrip() |
| 665 | |
| 666 | def rstrip_end(self, size: int) -> None: |
| 667 | """Remove whitespace beyond a certain width at the end of the text. |
no outgoing calls