(&self, vm: &VirtualMachine)
| 642 | |
| 643 | #[pygetset] |
| 644 | fn contiguous(&self, vm: &VirtualMachine) -> PyResult<bool> { |
| 645 | self.try_not_released(vm).map(|_| self.desc.is_contiguous()) |
| 646 | } |
| 647 | |
| 648 | #[pygetset] |
| 649 | fn c_contiguous(&self, vm: &VirtualMachine) -> PyResult<bool> { |
nothing calls this directly
no test coverage detected