(self, tabsize=8)
| 1522 | return self.data.endswith(suffix, start, end) |
| 1523 | |
| 1524 | def expandtabs(self, tabsize=8): |
| 1525 | return self.__class__(self.data.expandtabs(tabsize)) |
| 1526 | |
| 1527 | def find(self, sub, start=0, end=_sys.maxsize): |
| 1528 | if isinstance(sub, UserString): |