(self, width, *args)
| 1456 | return self.__class__(self.data.casefold()) |
| 1457 | |
| 1458 | def center(self, width, *args): |
| 1459 | return self.__class__(self.data.center(width, *args)) |
| 1460 | |
| 1461 | def count(self, sub, start=0, end=_sys.maxsize): |
| 1462 | if isinstance(sub, UserString): |