summaryrefslogtreecommitdiffstats
path: root/Doc/library/math.rst
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-28 18:54:55 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-28 18:54:55 (GMT)
commitb93fff0a57cf9a39c47d29ec8011bd2b14b506ac (patch)
treede4331521b0e3e27da796c040ff59fb6821955f3 /Doc/library/math.rst
parentddfb6cdc2b1cc30bc3d530c5c1d8926d016081ef (diff)
downloadcpython-b93fff0a57cf9a39c47d29ec8011bd2b14b506ac.zip
cpython-b93fff0a57cf9a39c47d29ec8011bd2b14b506ac.tar.gz
cpython-b93fff0a57cf9a39c47d29ec8011bd2b14b506ac.tar.bz2
Issue #3366: Add gamma function to math module.
(lgamma, erf and erfc to follow).
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r--Doc/library/math.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 96ea91a..d46014b 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -308,6 +308,16 @@ Hyperbolic functions
Return the hyperbolic tangent of *x*.
+Special functions
+-----------------
+
+.. function:: gamma(x)
+
+ Return the Gamma function at *x*.
+
+ .. versionadded:: 2.7
+
+
Constants
---------