(
&self,
_proto: usize,
vm: &VirtualMachine,
)
| 629 | |
| 630 | #[pymethod] |
| 631 | fn __reduce_ex__( |
| 632 | &self, |
| 633 | _proto: usize, |
| 634 | vm: &VirtualMachine, |
| 635 | ) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) { |
| 636 | self.__reduce__(vm) |
| 637 | } |
| 638 | |
| 639 | #[pymethod] |
| 640 | fn __reduce__(&self, vm: &VirtualMachine) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) { |
nothing calls this directly
no test coverage detected