diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-28 19:21:11 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-28 19:21:11 (GMT) |
commit | 12c4bdb0e8d96640423bd6878dac2aecacb2d741 (patch) | |
tree | 87890d9a18bc8ddf348f4b7764d0418b003b4b1b /Doc/library | |
parent | 40af630672b8d7d71f7ebf70ae9d4a133210cfb1 (diff) | |
download | cpython-12c4bdb0e8d96640423bd6878dac2aecacb2d741.zip cpython-12c4bdb0e8d96640423bd6878dac2aecacb2d741.tar.gz cpython-12c4bdb0e8d96640423bd6878dac2aecacb2d741.tar.bz2 |
Merged revisions 75117 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75117 | mark.dickinson | 2009-09-28 19:54:55 +0100 (Mon, 28 Sep 2009) | 3 lines
Issue #3366: Add gamma function to math module.
(lgamma, erf and erfc to follow).
........
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/math.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 566603d..270c25f 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -278,6 +278,16 @@ Hyperbolic functions Return the hyperbolic tangent of *x*. +Special functions +----------------- + +.. function:: gamma(x) + + Return the Gamma function at *x*. + + .. versionadded:: 2.7 + + Constants --------- |