(x: ArgIntoFloat, vm: &VirtualMachine)
| 302 | |
| 303 | #[pyfunction] |
| 304 | fn cosh(x: ArgIntoFloat, vm: &VirtualMachine) -> PyResult<f64> { |
| 305 | pymath::math::cosh(x.into_float()).map_err(|err| pymath_exception(err, vm)) |
| 306 | } |
| 307 | |
| 308 | #[pyfunction] |
| 309 | fn sinh(x: ArgIntoFloat, vm: &VirtualMachine) -> PyResult<f64> { |
no test coverage detected