(self, width, *args)
| 1611 | return self.data.rindex(sub, start, end) |
| 1612 | |
| 1613 | def rjust(self, width, *args): |
| 1614 | return self.__class__(self.data.rjust(width, *args)) |
| 1615 | |
| 1616 | def rpartition(self, sep): |
| 1617 | return self.data.rpartition(sep) |
no test coverage detected