Dear maintainer,
operations with complex numbers have some surprising results in gnome-
calculator.
while e^(a*i*Pi) seems to give the correct result for every a in R, other
related operations don't work as well:
* Integer power: z^n, z in C, n in N, returns z even if it makes no sense,
while z*z, for example, works fine.
If n is not positive, strange things happen, depending on inputs.
Reproduce with i^2, i^(-1), i^(-2)
* Hyperbolic fuctions: sinh(ai), cosh(ai) and tanh(ai) always return 0 and 1,
instead of the proper value.
With some testing, they seem to return f(Re(z)) instead of f(z).
Consider telling the user those functions are unsupported for some arguments,
like the factorial does.