(x: ArgIntoFloat, vm: &VirtualMachine)
| 27 | // Number theory functions: |
| 28 | #[pyfunction] |
| 29 | fn fabs(x: ArgIntoFloat, vm: &VirtualMachine) -> PyResult<f64> { |
| 30 | pymath::math::fabs(x.into_float()).map_err(|err| pymath_exception(err, vm)) |
| 31 | } |
| 32 | |
| 33 | #[pyfunction] |
| 34 | fn isfinite(x: ArgIntoFloat) -> bool { |