(self, sep=None, maxsplit=-1)
| 230 | return self.__class__(self.data.rstrip(chars)) |
| 231 | |
| 232 | def split(self, sep=None, maxsplit=-1): |
| 233 | return self.data.split(sep, maxsplit) |
| 234 | |
| 235 | def rsplit(self, sep=None, maxsplit=-1): |
| 236 | return self.data.rsplit(sep, maxsplit) |
no outgoing calls
no test coverage detected