(self, width, *args)
| 1580 | return self.data.join(seq) |
| 1581 | |
| 1582 | def ljust(self, width, *args): |
| 1583 | return self.__class__(self.data.ljust(width, *args)) |
| 1584 | |
| 1585 | def lower(self): |
| 1586 | return self.__class__(self.data.lower()) |
no test coverage detected