(self, sep=None, maxsplit=-1)
| 1620 | return self.__class__(self.data.rstrip(chars)) |
| 1621 | |
| 1622 | def split(self, sep=None, maxsplit=-1): |
| 1623 | return self.data.split(sep, maxsplit) |
| 1624 | |
| 1625 | def rsplit(self, sep=None, maxsplit=-1): |
| 1626 | return self.data.rsplit(sep, maxsplit) |
no outgoing calls
no test coverage detected