summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2021-01-12 14:45:05 (GMT)
committerGitHub <noreply@github.com>2021-01-12 14:45:05 (GMT)
commit187f76def8a5bd0af7ab512575cad30cfe624b05 (patch)
treedb9ccc652ff67efda727de984dfd07e605104152 /Misc
parent5ded7efa6a7a232dd4a41e6e65e4dae47146514b (diff)
downloadcpython-187f76def8a5bd0af7ab512575cad30cfe624b05.zip
cpython-187f76def8a5bd0af7ab512575cad30cfe624b05.tar.gz
cpython-187f76def8a5bd0af7ab512575cad30cfe624b05.tar.bz2
[3.8] bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) (GH-24120)
Co-Authored-By: Andreas Schneider <asn@cryptomilk.org> Co-Authored-By: Antoine Pitrou <antoine@python.org>. Co-authored-by: Petr Viktorin <encukou@gmail.com> (cherry picked from commit 056c08211b402b4dbc1530a9de9d00ad5309909f) https://bugs.python.org/issue40052
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2020-03-24-09-27-10.bpo-40052.27P2KG.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-03-24-09-27-10.bpo-40052.27P2KG.rst b/Misc/NEWS.d/next/C API/2020-03-24-09-27-10.bpo-40052.27P2KG.rst
new file mode 100644
index 0000000..538488e
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-03-24-09-27-10.bpo-40052.27P2KG.rst
@@ -0,0 +1,2 @@
+Fix an alignment build warning/error in function ``PyVectorcall_Function()``.
+Patch by Andreas Schneider, Antoine Pitrou and Petr Viktorin.