Calls `str.decode` element-wise. See also -------- char.decode
(self, encoding=None, errors=None)
| 2197 | return count(self, sub, start, end) |
| 2198 | |
| 2199 | def decode(self, encoding=None, errors=None): |
| 2200 | """ |
| 2201 | Calls `str.decode` element-wise. |
| 2202 | |
| 2203 | See also |
| 2204 | -------- |
| 2205 | char.decode |
| 2206 | |
| 2207 | """ |
| 2208 | return decode(self, encoding, errors) |
| 2209 | |
| 2210 | def encode(self, encoding=None, errors=None): |
| 2211 | """ |
no test coverage detected