(args: PathArg, vm: &VirtualMachine)
| 823 | /// return _testFileType(path, PY_IFMNT) |
| 824 | #[pyfunction] |
| 825 | fn _path_isjunction(args: PathArg, vm: &VirtualMachine) -> bool { |
| 826 | args.to_path_or_fd(vm) |
| 827 | .is_some_and(|p| _test_file_type(&p, PY_IFMNT)) |
| 828 | } |
| 829 | |
| 830 | /// Check if a path exists (follows symlinks). |
| 831 | /// return _testFileExists(path, TRUE) |
nothing calls this directly
no test coverage detected