summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2021-05-05 20:55:33 (GMT)
committerGitHub <noreply@github.com>2021-05-05 20:55:33 (GMT)
commitda5c808fb50d34bc2e180d9481706072f33025da (patch)
tree305c183010edac7a9c4755288e16cc832c50d6bf /Misc
parent565a31804c1139fe7886f38af3b3923653b0c1b3 (diff)
downloadcpython-da5c808fb50d34bc2e180d9481706072f33025da.zip
cpython-da5c808fb50d34bc2e180d9481706072f33025da.tar.gz
cpython-da5c808fb50d34bc2e180d9481706072f33025da.tar.bz2
bpo-36515: Disable unaligned memory access in _sha3 on ARM (GH-25927)
Contributed-By: Matthias Klose Automerge-Triggered-By: GH:tiran
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-05-05-11-44-49.bpo-36515.uOSa3q.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-05-05-11-44-49.bpo-36515.uOSa3q.rst b/Misc/NEWS.d/next/Library/2021-05-05-11-44-49.bpo-36515.uOSa3q.rst
new file mode 100644
index 0000000..dd24474
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-05-05-11-44-49.bpo-36515.uOSa3q.rst
@@ -0,0 +1,2 @@
+The :mod:`hashlib` module no longer does unaligned memory accesses when
+compiled for ARM platforms.