(args: PathArg, vm: &VirtualMachine)
| 831 | /// return _testFileExists(path, TRUE) |
| 832 | #[pyfunction] |
| 833 | fn _path_exists(args: PathArg, vm: &VirtualMachine) -> bool { |
| 834 | args.to_path_or_fd(vm) |
| 835 | .is_some_and(|p| _test_file_exists(&p, true)) |
| 836 | } |
| 837 | |
| 838 | /// Check if a path exists (does not follow symlinks). |
| 839 | /// return _testFileExists(path, FALSE) |
nothing calls this directly
no test coverage detected