diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-11-16 16:00:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-16 16:00:57 (GMT) |
commit | 5fd5cb8d85fab3393dd76c7f3de1cdeb8ecf7203 (patch) | |
tree | 99ac87736a8b6906bd7d4faeccd1a0d5cebfdb6e /Misc/NEWS.d | |
parent | 51edf8aaa2e17626f9690ed29d25945fc03016b9 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-10-30-11-31-47.bpo-38639.9-vKtO.rst | 2 |
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. |