(path: OsPath, uid: isize, gid: isize, vm: &VirtualMachine)
| 658 | #[cfg(not(target_os = "redox"))] |
| 659 | #[pyfunction] |
| 660 | fn lchown(path: OsPath, uid: isize, gid: isize, vm: &VirtualMachine) -> PyResult<()> { |
| 661 | chown( |
| 662 | OsPathOrFd::Path(path), |
| 663 | uid, |
| 664 | gid, |
| 665 | DirFd::default(), |
| 666 | FollowSymlinks(false), |
| 667 | vm, |
| 668 | ) |
| 669 | } |
| 670 | |
| 671 | #[cfg(not(target_os = "redox"))] |
| 672 | #[pyfunction] |
nothing calls this directly
no test coverage detected