summaryrefslogtreecommitdiff
path: root/Doc/library/math.rst
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-11 20:17:17 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-12-11 20:17:17 +0000
commit05d2e084019d9ec67277df36acf372b81e18365f (patch)
tree7957bc8aabc2c09c7d9d39df92700f62ed474cf3 /Doc/library/math.rst
parente62df2ffaa76a29ededa51380597bec54a1a1cc6 (diff)
downloadcpython-git-05d2e084019d9ec67277df36acf372b81e18365f.tar.gz
Merged revisions 76755 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76755 | mark.dickinson | 2009-12-11 17:29:33 +0000 (Fri, 11 Dec 2009) | 2 lines Issue #3366: Add lgamma function to math module. ........
Diffstat (limited to 'Doc/library/math.rst')
-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 fdd3a1fbd7..e903c5f902 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -288,6 +288,14 @@ Special functions
.. versionadded:: 3.2
+.. function:: lgamma(x)
+
+ Return the natural logarithm of the absolute value of the Gamma
+ function at *x*.
+
+ .. versionadded:: 2.7
+
+
Constants
---------