(vm: &VirtualMachine)
| 202 | |
| 203 | #[pyfunction] |
| 204 | fn monotonic_ns(vm: &VirtualMachine) -> PyResult<u128> { |
| 205 | Ok(get_monotonic_time(vm)?.as_nanos()) |
| 206 | } |
| 207 | |
| 208 | #[pyfunction] |
| 209 | fn perf_counter(vm: &VirtualMachine) -> PyResult<f64> { |
nothing calls this directly
no test coverage detected