(&self, needle: PyObjectRef, vm: &VirtualMachine)
| 252 | } |
| 253 | |
| 254 | pub fn __delitem__(&self, needle: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 255 | self._delitem(&needle, vm) |
| 256 | } |
| 257 | |
| 258 | #[pystaticmethod] |
| 259 | fn maketrans(from: PyBytesInner, to: PyBytesInner, vm: &VirtualMachine) -> PyResult<Vec<u8>> { |