(
&self,
_proto: usize,
vm: &VirtualMachine,
)
| 542 | impl Py<PyBytes> { |
| 543 | #[pymethod] |
| 544 | fn __reduce_ex__( |
| 545 | &self, |
| 546 | _proto: usize, |
| 547 | vm: &VirtualMachine, |
| 548 | ) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) { |
| 549 | self.__reduce__(vm) |
| 550 | } |
| 551 | |
| 552 | #[pymethod] |
| 553 | fn __reduce__(&self, vm: &VirtualMachine) -> (PyTypeRef, PyTupleRef, Option<PyDictRef>) { |
nothing calls this directly
no test coverage detected