summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-06-09 06:54:45 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-06-09 06:54:45 (GMT)
commitecbdd2e9b0a5af20a2b8784ac91338739b99ce3d (patch)
tree1cc2a450f85ce75d3c9a13741a755d44640a6821 /Misc
parentdd96db63f689e2f0d8ae5a1436b3b3395eec7de5 (diff)
downloadcpython-ecbdd2e9b0a5af20a2b8784ac91338739b99ce3d.zip
cpython-ecbdd2e9b0a5af20a2b8784ac91338739b99ce3d.tar.gz
cpython-ecbdd2e9b0a5af20a2b8784ac91338739b99ce3d.tar.bz2
Issue #2138: Add math.factorial().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b5afbcc..4337e5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,8 @@ Core and Builtins
Extension Modules
-----------------
+- Issue #2138: Add factorial() the math module.
+
- The heapq module does comparisons using LT instead of LE. This
makes its implementation match that used by list.sort().