(self, sub, start=0, end=sys.maxsize)
| 220 | return self.__class__(self.data.center(width, *args)) |
| 221 | |
| 222 | def count(self, sub, start=0, end=sys.maxsize): |
| 223 | return self.data.count(sub, start, end) |
| 224 | |
| 225 | def decode(self, encoding=None, errors=None): # XXX improve this? |
| 226 | if encoding: |
nothing calls this directly
no outgoing calls
no test coverage detected