(self, *args, **kwargs)
| 109 | join.__doc__ = text_type.join.__doc__ |
| 110 | |
| 111 | def split(self, *args, **kwargs): |
| 112 | return list(map(self.__class__, text_type.split(self, *args, **kwargs))) |
| 113 | split.__doc__ = text_type.split.__doc__ |
| 114 | |
| 115 | def rsplit(self, *args, **kwargs): |