We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 246c78f commit e0670d6Copy full SHA for e0670d6
Modules/_testcapi/parts.h
@@ -1,3 +1,3 @@
1
#include "Python.h"
2
3
-PyAPI_FUNC(int) _PyTestCapi_Init_Vectorcall(PyObject *module);
+int _PyTestCapi_Init_Vectorcall(PyObject *module);
Modules/_testcapi/vectorcall.c
@@ -229,7 +229,7 @@ static PyTypeObject MethodDescriptor2_Type = {
229
};
230
231
232
-PyAPI_FUNC(int)
+int
233
_PyTestCapi_Init_Vectorcall(PyObject *m) {
234
if (PyModule_AddFunctions(m, TestMethods) < 0) {
235
return -1;
0 commit comments