gh-142225: Fix PyABIInfo_VAR macro (GH-142230)

This commit is contained in:
Stan Ulbrych 2025-12-04 09:33:15 +00:00 committed by GitHub
parent 1a7824a927
commit fb404ab575
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -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, \

View file

@ -0,0 +1 @@
Fixed the :c:macro:`PyABIInfo_VAR` macro.