Calls ``bytes.decode`` element-wise. See Also -------- char.decode
(self, encoding=None, errors=None)
| 782 | return count(self, sub, start, end) |
| 783 | |
| 784 | def decode(self, encoding=None, errors=None): |
| 785 | """ |
| 786 | Calls ``bytes.decode`` element-wise. |
| 787 | |
| 788 | See Also |
| 789 | -------- |
| 790 | char.decode |
| 791 | |
| 792 | """ |
| 793 | return decode(self, encoding, errors) |
| 794 | |
| 795 | def encode(self, encoding=None, errors=None): |
| 796 | """ |