(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) |
| 1627 | |
| 1628 | def splitlines(self, keepends=False): |
| 1629 | return self.data.splitlines(keepends) |
no outgoing calls
no test coverage detected