From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Thu, 4 Dec 2025 09:33:15 +0000 (+0000) Subject: gh-142225: Fix `PyABIInfo_VAR` macro (GH-142230) X-Git-Tag: v3.15.0a3~208 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb404ab575de7ab7658069810b7d771fb70d9fe4;p=thirdparty%2FPython%2Fcpython.git gh-142225: Fix `PyABIInfo_VAR` macro (GH-142230) --- diff --git a/Include/modsupport.h b/Include/modsupport.h index 094b9ff0e5cc..cb47ad8cd272 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -132,7 +132,7 @@ PyAPI_FUNC(int) PyABIInfo_Check(PyABIInfo *info, const char *module_name); ) \ ///////////////////////////////////////////////////////// -#define _PyABIInfo_DEFAULT() { \ +#define _PyABIInfo_DEFAULT { \ 1, 0, \ PyABIInfo_DEFAULT_FLAGS, \ PY_VERSION_HEX, \ diff --git a/Misc/NEWS.d/next/C_API/2025-12-03-16-35-24.gh-issue-142225.vmCJoo.rst b/Misc/NEWS.d/next/C_API/2025-12-03-16-35-24.gh-issue-142225.vmCJoo.rst new file mode 100644 index 000000000000..1eaf5b713d9c --- /dev/null +++ b/Misc/NEWS.d/next/C_API/2025-12-03-16-35-24.gh-issue-142225.vmCJoo.rst @@ -0,0 +1 @@ +Fixed the :c:macro:`PyABIInfo_VAR` macro.