summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-12 12:08:06 (GMT)
committerGitHub <noreply@github.com>2017-03-12 12:08:06 (GMT)
commit4125e5c60e24ffcff8031817dc60984335917f59 (patch)
tree074f44b09757a353d69953c888871456b40c85e4 /Misc
parentc2cf12857187aa147c268651f10acd6da2c9cb74 (diff)
downloadcpython-4125e5c60e24ffcff8031817dc60984335917f59.zip
cpython-4125e5c60e24ffcff8031817dc60984335917f59.tar.gz
cpython-4125e5c60e24ffcff8031817dc60984335917f59.tar.bz2
bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. (#637)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 1 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2872aa1..d4f0f25 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -284,8 +284,7 @@ Library
- bpo-28692: Using non-integer value for selecting a plural form in gettext is
now deprecated.
-- bpo-26121: Use C library implementation for math functions:
- tgamma(), lgamma(), erf() and erfc().
+- bpo-26121: Use C library implementation for math functions erf() and erfc().
- bpo-29619: os.stat() and os.DirEntry.inode() now convert inode (st_ino) using
unsigned integers.