(&self, vm: &VirtualMachine)
| 637 | impl DirEntry { |
| 638 | #[pygetset] |
| 639 | fn name(&self, vm: &VirtualMachine) -> PyResult { |
| 640 | Ok(self.mode.process_path(&self.file_name, vm)) |
| 641 | } |
| 642 | |
| 643 | #[pygetset] |
| 644 | fn path(&self, vm: &VirtualMachine) -> PyResult { |
no test coverage detected