(z: ArgIntoComplex, vm: &VirtualMachine)
| 84 | |
| 85 | #[pyfunction] |
| 86 | fn acos(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
| 87 | pymath::cmath::acos(z.into_complex()).map_err(|err| pymath_exception(err, vm)) |
| 88 | } |
| 89 | |
| 90 | #[pyfunction] |
| 91 | fn log( |
nothing calls this directly
no test coverage detected