(z: ArgIntoComplex, vm: &VirtualMachine)
| 102 | |
| 103 | #[pyfunction] |
| 104 | fn log10(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
| 105 | pymath::cmath::log10(z.into_complex()).map_err(|err| pymath_exception(err, vm)) |
| 106 | } |
| 107 | |
| 108 | #[pyfunction] |
| 109 | fn acosh(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
nothing calls this directly
no test coverage detected