(z: ArgIntoComplex, vm: &VirtualMachine)
| 107 | |
| 108 | #[pyfunction] |
| 109 | fn acosh(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
| 110 | pymath::cmath::acosh(z.into_complex()).map_err(|err| pymath_exception(err, vm)) |
| 111 | } |
| 112 | |
| 113 | #[pyfunction] |
| 114 | fn atan(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
nothing calls this directly
no test coverage detected