summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-11 17:29:33 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-11 17:29:33 (GMT)
commit9be87bc992465abaa572f86fcf4e375192617a6f (patch)
tree4c52c0b4183c751e41cfec1a4609fd44cb8c8db9 /Doc
parent5cc4e2a04035ff823930aa39d88fb6678654637e (diff)
downloadcpython-9be87bc992465abaa572f86fcf4e375192617a6f.zip
cpython-9be87bc992465abaa572f86fcf4e375192617a6f.tar.gz
cpython-9be87bc992465abaa572f86fcf4e375192617a6f.tar.bz2
Issue #3366: Add lgamma function to math module.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/math.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index d297c78..93f24e3 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -318,6 +318,14 @@ Special functions
.. versionadded:: 2.7
+.. function:: lgamma(x)
+
+ Return the natural logarithm of the absolute value of the Gamma
+ function at *x*.
+
+ .. versionadded:: 2.7
+
+
Constants
---------