(vm: &VirtualMachine)
| 197 | |
| 198 | #[pyfunction] |
| 199 | fn monotonic(vm: &VirtualMachine) -> PyResult<f64> { |
| 200 | Ok(get_monotonic_time(vm)?.as_secs_f64()) |
| 201 | } |
| 202 | |
| 203 | #[pyfunction] |
| 204 | fn monotonic_ns(vm: &VirtualMachine) -> PyResult<u128> { |
nothing calls this directly
no test coverage detected