summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-01-30 13:23:15 (GMT)
committerGitHub <noreply@github.com>2020-01-30 13:23:15 (GMT)
commit8d49f7ceb4f961770ae61fe6a4033c4e61cc3288 (patch)
treebf3e0f674c1d714ebe98486bad2a46ecaeeffe0e /Misc
parent2a4903fcce54c25807d362dbbbcfb32d0b494f9f (diff)
downloadcpython-8d49f7ceb4f961770ae61fe6a4033c4e61cc3288.zip
cpython-8d49f7ceb4f961770ae61fe6a4033c4e61cc3288.tar.gz
cpython-8d49f7ceb4f961770ae61fe6a4033c4e61cc3288.tar.bz2
bpo-39434: Improve float __floordiv__ performance and error message (GH-18147)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-24-01-07-04.bpo-39434.S5ehj9.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-24-01-07-04.bpo-39434.S5ehj9.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-24-01-07-04.bpo-39434.S5ehj9.rst
new file mode 100644
index 0000000..e5a4133
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-24-01-07-04.bpo-39434.S5ehj9.rst
@@ -0,0 +1,3 @@
+:term:`floor division` of float operation now has a better performance. Also
+the message of :exc:`ZeroDivisionError` for this operation is updated.
+Patch by Dong-hee Na.