(zelf: PyObjectRef, vm: &VirtualMachine)
| 3822 | |
| 3823 | #[pymethod] |
| 3824 | fn __getstate__(zelf: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 3825 | Err(vm.new_type_error(format!("cannot pickle '{}' instances", zelf.class().name()))) |
| 3826 | } |
| 3827 | |
| 3828 | #[pymethod] |
| 3829 | fn __reduce_ex__(zelf: PyObjectRef, proto: usize, vm: &VirtualMachine) -> PyResult { |