(self, sep)
| 1574 | return self.__class__(self.data.rjust(width, *args)) |
| 1575 | |
| 1576 | def rpartition(self, sep): |
| 1577 | return self.data.rpartition(sep) |
| 1578 | |
| 1579 | def rstrip(self, chars=None): |
| 1580 | return self.__class__(self.data.rstrip(chars)) |
no outgoing calls