(args: PathArg, vm: &VirtualMachine)
| 839 | /// return _testFileExists(path, FALSE) |
| 840 | #[pyfunction] |
| 841 | fn _path_lexists(args: PathArg, vm: &VirtualMachine) -> bool { |
| 842 | args.to_path_or_fd(vm) |
| 843 | .is_some_and(|p| _test_file_exists(&p, false)) |
| 844 | } |
| 845 | |
| 846 | /// Check if a path is on a Windows Dev Drive. |
| 847 | #[pyfunction] |
nothing calls this directly
no test coverage detected