(self, *args, **kwargs)
| 113 | split.__doc__ = text_type.split.__doc__ |
| 114 | |
| 115 | def rsplit(self, *args, **kwargs): |
| 116 | return list(map(self.__class__, text_type.rsplit(self, *args, **kwargs))) |
| 117 | rsplit.__doc__ = text_type.rsplit.__doc__ |
| 118 | |
| 119 | def splitlines(self, *args, **kwargs): |
no test coverage detected