Calls `str.encode` element-wise. See also -------- char.encode
(self, encoding=None, errors=None)
| 2208 | return decode(self, encoding, errors) |
| 2209 | |
| 2210 | def encode(self, encoding=None, errors=None): |
| 2211 | """ |
| 2212 | Calls `str.encode` element-wise. |
| 2213 | |
| 2214 | See also |
| 2215 | -------- |
| 2216 | char.encode |
| 2217 | |
| 2218 | """ |
| 2219 | return encode(self, encoding, errors) |
| 2220 | |
| 2221 | def endswith(self, suffix, start=0, end=None): |
| 2222 | """ |
no test coverage detected