(args: PathArg, vm: &VirtualMachine)
| 815 | /// return _testFileType(path, PY_IFLNK) |
| 816 | #[pyfunction] |
| 817 | fn _path_islink(args: PathArg, vm: &VirtualMachine) -> bool { |
| 818 | args.to_path_or_fd(vm) |
| 819 | .is_some_and(|p| _test_file_type(&p, PY_IFLNK)) |
| 820 | } |
| 821 | |
| 822 | /// Check if a path is a junction (mount point). |
| 823 | /// return _testFileType(path, PY_IFMNT) |
nothing calls this directly
no test coverage detected