(obj: PyObjectRef, vm: &VirtualMachine)
| 525 | |
| 526 | #[pymethod] |
| 527 | fn __reduce__(obj: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 528 | common_reduce(obj, 0, vm) |
| 529 | } |
| 530 | |
| 531 | #[pymethod] |
| 532 | fn __reduce_ex__(obj: PyObjectRef, proto: usize, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected