[Python-checkins] r62410 - python/trunk/Doc/library/math.rst

mark.dickinson python-checkins at python.org
Sat Apr 19 23:49:23 CEST 2008


Author: mark.dickinson
Date: Sat Apr 19 23:49:22 2008
New Revision: 62410

Log:
Move asinh documentation to the proper place.
Remove meaningless 'in radians' from inverse
hyperbolic functions.


Modified:
   python/trunk/Doc/library/math.rst

Modified: python/trunk/Doc/library/math.rst
==============================================================================
--- python/trunk/Doc/library/math.rst	(original)
+++ python/trunk/Doc/library/math.rst	Sat Apr 19 23:49:22 2008
@@ -213,13 +213,6 @@
    Return the sine of *x* radians.
 
 
-.. function:: asinh(x)
-
-   Return the inverse hyperbolic sine of *x*, in radians.
-
-   .. versionadded:: 2.6
-
-
 .. function:: tan(x)
 
    Return the tangent of *x* radians.
@@ -239,18 +232,32 @@
 Hyperbolic functions:
 
 
-.. function:: cosh(x)
+.. function:: acosh(x)
 
-   Return the hyperbolic cosine of *x*.
+   Return the inverse hyperbolic cosine of *x*.
 
+   .. versionadded:: 2.6
 
-.. function:: acosh(x)
 
-   Return the inverse hyperbolic cosine of *x*, in radians.
+.. function:: asinh(x)
+
+   Return the inverse hyperbolic sine of *x*.
 
    .. versionadded:: 2.6
 
 
+.. function:: atanh(x)
+
+   Return the inverse hyperbolic tangent of *x*.
+
+   .. versionadded:: 2.6
+
+
+.. function:: cosh(x)
+
+   Return the hyperbolic cosine of *x*.
+
+
 .. function:: sinh(x)
 
    Return the hyperbolic sine of *x*.
@@ -261,12 +268,6 @@
    Return the hyperbolic tangent of *x*.
 
 
-.. function:: atanh(x)
-
-   Return the inverse hyperbolic tangent of *x*, in radians.
-
-   .. versionadded:: 2.6
-
 
 The module also defines two mathematical constants:
 


More information about the Python-checkins mailing list