(&self, vm: &VirtualMachine)
| 451 | |
| 452 | impl PathArg { |
| 453 | fn to_path_or_fd(&self, vm: &VirtualMachine) -> Option<OsPathOrFd<'static>> { |
| 454 | OsPathOrFd::try_from_object(vm, self.path.clone()).ok() |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | // File type test constants (PY_IF* constants - internal, not from Windows API) |
no test coverage detected