(self)
| 128 | def translate(self, *args): |
| 129 | return self.__class__(self.data.translate(*args)) |
| 130 | def upper(self): return self.__class__(self.data.upper()) |
| 131 | def zfill(self, width): return self.__class__(self.data.zfill(width)) |
| 132 | |
| 133 | class MutableString(UserString, collections.MutableSequence): |
no outgoing calls
no test coverage detected