diff options
author | Xinhang Xu <xuxinhang4567@126.com> | 2021-12-27 18:36:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 18:36:55 (GMT) |
commit | 3581c7abbe15bad6ae08fc38887e5948f8f39e08 (patch) | |
tree | 09951be8f8b78d6c22f66e3b1bab2d50bb2f9bbd /Misc | |
parent | 360fedc2d2ce6ccb0dab554ef45fe83f7aea1862 (diff) | |
download | cpython-3581c7abbe15bad6ae08fc38887e5948f8f39e08.zip cpython-3581c7abbe15bad6ae08fc38887e5948f8f39e08.tar.gz cpython-3581c7abbe15bad6ae08fc38887e5948f8f39e08.tar.bz2 |
bpo-46055: Speed up binary shifting operators (GH-30044)
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-12-24-20-21-45.bpo-46055.R0QMVQ.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1964,6 +1964,7 @@ Doug Wyatt Xiang Zhang Robert Xiao Florent Xicluna +Xinhang Xu Arnon Yaari Alakshendra Yadav Hirokazu Yamamoto diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-12-24-20-21-45.bpo-46055.R0QMVQ.rst b/Misc/NEWS.d/next/Core and Builtins/2021-12-24-20-21-45.bpo-46055.R0QMVQ.rst new file mode 100644 index 0000000..1241388 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-12-24-20-21-45.bpo-46055.R0QMVQ.rst @@ -0,0 +1,2 @@ +Speed up shifting operation involving integers less than +:c:macro:`PyLong_BASE`. Patch by Xinhang Xu. |