(self, sep=None, maxsplit=-1)
| 1580 | return self.__class__(self.data.rstrip(chars)) |
| 1581 | |
| 1582 | def split(self, sep=None, maxsplit=-1): |
| 1583 | return self.data.split(sep, maxsplit) |
| 1584 | |
| 1585 | def rsplit(self, sep=None, maxsplit=-1): |
| 1586 | return self.data.rsplit(sep, maxsplit) |
no outgoing calls
no test coverage detected