summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e742ffc..70623b2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1341,6 +1341,8 @@ C-API
Extension Modules
-----------------
+- Issue #3366: Add gamma function to math module.
+
- Issue #6823: Allow time.strftime() to accept a tuple with a isdst field
outside of the range of [-1, 1] by normalizing the value to within that
range.