diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:22:44 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:22:44 (GMT) |
commit | cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b (patch) | |
tree | 625272f5ee43e7d8dc05cae4e5512128412b58c3 /Modules/cmathmodule.c | |
parent | a5d0c7c2fdd638d684acdb5391e0987b1e37f56a (diff) | |
parent | dfe0b2326b9700f5f5f5af566488dfe913348ab9 (diff) | |
download | cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.zip cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.gz cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.bz2 |
Issue #21092: Merge from 3.4.
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r-- | Modules/cmathmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 6d9b2ed..5746db1 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -207,7 +207,7 @@ static Py_complex acosh_special_values[7][7]; /*[clinic input] cmath.acosh = cmath.acos -Return the hyperbolic arccosine of z. +Return the inverse hyperbolic cosine of z. [clinic start generated code]*/ static Py_complex @@ -262,7 +262,7 @@ static Py_complex asinh_special_values[7][7]; /*[clinic input] cmath.asinh = cmath.acos -Return the hyperbolic arc sine of z. +Return the inverse hyperbolic sine of z. [clinic start generated code]*/ static Py_complex @@ -353,7 +353,7 @@ static Py_complex atanh_special_values[7][7]; /*[clinic input] cmath.atanh = cmath.acos -Return the hyperbolic arc tangent of z. +Return the inverse hyperbolic tangent of z. [clinic start generated code]*/ static Py_complex |