(vm: &VirtualMachine)
| 1479 | |
| 1480 | #[pyfunction] |
| 1481 | fn getcwd(vm: &VirtualMachine) -> PyResult { |
| 1482 | Ok(OutputMode::String.process_path(curdir_inner(vm)?, vm)) |
| 1483 | } |
| 1484 | |
| 1485 | #[pyfunction] |
| 1486 | fn getcwdb(vm: &VirtualMachine) -> PyResult { |
no test coverage detected