(&self, vm: &VirtualMachine)
| 93 | impl PySlice { |
| 94 | #[pygetset] |
| 95 | fn start(&self, vm: &VirtualMachine) -> PyObjectRef { |
| 96 | self.start.clone().to_pyobject(vm) |
| 97 | } |
| 98 | |
| 99 | pub(crate) fn start_ref<'a>(&'a self, vm: &'a VirtualMachine) -> &'a PyObject { |
| 100 | match &self.start { |
no test coverage detected