(&mut self, n: isize, vm: &VirtualMachine)
| 953 | } |
| 954 | |
| 955 | pub fn imul(&mut self, n: isize, vm: &VirtualMachine) -> PyResult<()> { |
| 956 | self.elements.imul(vm, n) |
| 957 | } |
| 958 | |
| 959 | pub fn concat(&self, other: &PyObject, vm: &VirtualMachine) -> PyResult<Vec<u8>> { |
| 960 | let buffer = PyBuffer::try_from_borrowed_object(vm, other)?; |
no outgoing calls
no test coverage detected