Sebastien Binet <bi...@cern.ch> added the comment:

hi Mark,

that may very well be so, but I'd naively standardize on C/Fortran behaviour 
(but that's probably my physicist bias)

on my platform, the following piece of C-code:

$ cat test_cmath.c
#include <complex.h>
#include <stdio.h>

int main(int argc, char** argv)
{
  complex c = casinh(-2*I);
  printf("asinh(-2j) = %g + %gi\n", creal(c), cimag(c));
  return 0;
}
/* EOF */

gives:
$ ./a.out 
asinh(-2j) = -1.31696 + -1.5708i

cheers,
sebastien.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue1381>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to