summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-11 21:37:16 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2017-03-11 21:37:16 (GMT)
commit97553fdf9daa8231eb05a1ca9933a2b03b0bdad0 (patch)
treea024012326de65c7ddec71e30464a170952c1933 /Misc/NEWS
parentc5d3bfea0b0bba34bc3cd517a12153e189c80556 (diff)
downloadcpython-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 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c4bdbef..59ec700 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -270,6 +270,9 @@ Extension Modules
Library
-------
+- bpo-26121: Use C library implementation for math functions:
+ tgamma(), lgamma(), erf() and erfc().
+
- bpo-29619: os.stat() and os.DirEntry.inode() now convert inode (st_ino) using
unsigned integers.