diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-11 21:37:16 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2017-03-11 21:37:16 (GMT) |
commit | 97553fdf9daa8231eb05a1ca9933a2b03b0bdad0 (patch) | |
tree | a024012326de65c7ddec71e30464a170952c1933 /Doc/whatsnew/3.7.rst | |
parent | c5d3bfea0b0bba34bc3cd517a12153e189c80556 (diff) | |
download | cpython-97553fdf9daa8231eb05a1ca9933a2b03b0bdad0.zip cpython-97553fdf9daa8231eb05a1ca9933a2b03b0bdad0.tar.gz cpython-97553fdf9daa8231eb05a1ca9933a2b03b0bdad0.tar.bz2 |
bpo-26121: Use C library implementation for math functions: (#515)
* bpo-26121: Use C library implementation for math functions:
tgamma(), lgamma(), erf() and erfc().
* Don't use tgamma() and lgamma() from libc on OS X.
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 1c737e8..71ae10b 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -133,6 +133,11 @@ Optimizations in method calls being faster up to 20%. (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.) +* Fast implementation from standard C library is now used for functions + :func:`~math.tgamma`, :func:`~math.lgamma`, :func:`~math.erf` and + :func:`~math.erfc` in the :mod:`math` module. + (Contributed by Serhiy Storchaka in :issue:`26121`.) + Build and C API Changes ======================= |