summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-11-16 16:00:57 (GMT)
committerGitHub <noreply@github.com>2019-11-16 16:00:57 (GMT)
commit5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203 (patch)
tree99ac87736a8b6906bd7d4faeccd1a0d5cebfdb6e /Misc/NEWS.d/next
parent51edf8aaa2e17626f9690ed29d25945fc03016b9 (diff)
downloadcpython-5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203.zip
cpython-5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203.tar.gz
cpython-5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203.tar.bz2
bpo-38639: Optimize floor(), ceil() and trunc() for floats. (GH-16991)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2019-10-30-11-31-47.bpo-38639.9-vKtO.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-10-30-11-31-47.bpo-38639.9-vKtO.rst b/Misc/NEWS.d/next/Core and Builtins/2019-10-30-11-31-47.bpo-38639.9-vKtO.rst
new file mode 100644
index 0000000..4432afd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2019-10-30-11-31-47.bpo-38639.9-vKtO.rst
@@ -0,0 +1,2 @@
+Optimized :func:`math.floor()`, :func:`math.ceil()` and :func:`math.trunc()`
+for floats.