diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-12-20 02:51:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-12-20 02:51:26 (GMT) |
commit | 4f6ec9d9ff8b74ba1267bb44f4ffa8a013f0ab16 (patch) | |
tree | 49d65afa5ade9263d4785cf4930319396fbecf5b /Doc | |
parent | 2d54e72a628b52917faec32ef5b25dc080be15f4 (diff) | |
download | cpython-4f6ec9d9ff8b74ba1267bb44f4ffa8a013f0ab16.zip cpython-4f6ec9d9ff8b74ba1267bb44f4ffa8a013f0ab16.tar.gz cpython-4f6ec9d9ff8b74ba1267bb44f4ffa8a013f0ab16.tar.bz2 |
add headings
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/math.rst | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 594ee92..1eb2d71 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -21,8 +21,9 @@ was generated in the first place. The following functions are provided by this module. Except when explicitly noted otherwise, all return values are floats. -Number-theoretic and representation functions: +Number-theoretic and representation functions +--------------------------------------------- .. function:: ceil(x) @@ -146,7 +147,9 @@ Python floats typically carry no more than 53 bits of precision (the same as the platform C double type), in which case any float *x* with ``abs(x) >= 2**52`` necessarily has no fractional bits. -Power and logarithmic functions: + +Power and logarithmic functions +------------------------------- .. function:: exp(x) @@ -193,7 +196,8 @@ Power and logarithmic functions: Return the square root of *x*. -Trigonometric functions: +Trigonometric functions +----------------------- .. function:: acos(x) @@ -241,7 +245,8 @@ Trigonometric functions: Return the tangent of *x* radians. -Angular conversion: +Angular conversion +------------------ .. function:: degrees(x) @@ -253,7 +258,8 @@ Angular conversion: Converts angle *x* from degrees to radians. -Hyperbolic functions: +Hyperbolic functions +-------------------- .. function:: acosh(x) @@ -291,7 +297,8 @@ Hyperbolic functions: Return the hyperbolic tangent of *x*. -The module also defines two mathematical constants: +Constants +--------- .. data:: pi |