(z: ArgIntoComplex, vm: &VirtualMachine)
| 74 | |
| 75 | #[pyfunction] |
| 76 | fn asin(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
| 77 | pymath::cmath::asin(z.into_complex()).map_err(|err| pymath_exception(err, vm)) |
| 78 | } |
| 79 | |
| 80 | #[pyfunction] |
| 81 | fn cos(z: ArgIntoComplex, vm: &VirtualMachine) -> PyResult<Complex64> { |
nothing calls this directly
no test coverage detected