(self, args: DecodeArgs, vm: &VirtualMachine)
| 600 | /// currently, only 'utf-8' and 'ascii' implemented |
| 601 | #[pymethod] |
| 602 | fn decode(self, args: DecodeArgs, vm: &VirtualMachine) -> PyResult<PyStrRef> { |
| 603 | bytes_decode(self.into(), args, vm) |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | static BUFFER_METHODS: BufferMethods = BufferMethods { |
no test coverage detected