(fd: i32, mode: u32, vm: &VirtualMachine)
| 348 | |
| 349 | #[pyfunction] |
| 350 | fn fchmod(fd: i32, mode: u32, vm: &VirtualMachine) -> PyResult<()> { |
| 351 | fchmod_impl(fd, mode, vm) |
| 352 | } |
| 353 | |
| 354 | #[pyfunction] |
| 355 | fn chmod(args: ChmodArgs<'_>, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected