Docstring fix:  acosh() returns the hyperbolic arccosine, not the
hyperbolic cosine.  Problem report via David Ascher by one of his
students.
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 060cc6f..ab8b5e1 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -64,7 +64,7 @@
 static char c_acosh_doc [] =
 "acosh(x)\n\
 \n\
-Return the hyperbolic cosine of x.";
+Return the hyperbolic arccosine of x.";
 
 
 static Py_complex c_asin(x)