summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXinhang Xu <xuxinhang4567@126.com>2021-12-27 18:36:55 (GMT)
committerGitHub <noreply@github.com>2021-12-27 18:36:55 (GMT)
commit3581c7abbe15bad6ae08fc38887e5948f8f39e08 (patch)
tree09951be8f8b78d6c22f66e3b1bab2d50bb2f9bbd /Misc
parent360fedc2d2ce6ccb0dab554ef45fe83f7aea1862 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-12-24-20-21-45.bpo-46055.R0QMVQ.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 94a82a0..8baaf73 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -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.