(self, *args, **kwargs)
| 117 | rsplit.__doc__ = text_type.rsplit.__doc__ |
| 118 | |
| 119 | def splitlines(self, *args, **kwargs): |
| 120 | return list(map(self.__class__, text_type.splitlines(self, *args, **kwargs))) |
| 121 | splitlines.__doc__ = text_type.splitlines.__doc__ |
| 122 | |
| 123 | def unescape(self): |