(vm: &VirtualMachine)
| 1484 | |
| 1485 | #[pyfunction] |
| 1486 | fn getcwdb(vm: &VirtualMachine) -> PyResult { |
| 1487 | Ok(OutputMode::Bytes.process_path(curdir_inner(vm)?, vm)) |
| 1488 | } |
| 1489 | |
| 1490 | #[pyfunction] |
| 1491 | fn chdir(path: OsPath, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected