(vm: &VirtualMachine)
| 166 | not(any(target_os = "emscripten", target_os = "wasi")), |
| 167 | )))] |
| 168 | fn _time(vm: &VirtualMachine) -> PyResult<f64> { |
| 169 | Ok(duration_since_system_now(vm)?.as_secs_f64()) |
| 170 | } |
| 171 | |
| 172 | #[cfg(all( |
| 173 | target_arch = "wasm32", |
no test coverage detected