Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Modules/_ctypes/_ctypes_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -1032,14 +1032,17 @@ EXPORT (HRESULT) KeepObject(IUnknown *punk)

#endif

static struct PyModuleDef_Slot _ctypes_test_slots[] = {
{0, NULL}
};

static struct PyModuleDef _ctypes_testmodule = {
PyModuleDef_HEAD_INIT,
"_ctypes_test",
NULL,
-1,
0,
module_methods,
NULL,
_ctypes_test_slots,
NULL,
NULL,
NULL
Expand All @@ -1048,5 +1051,5 @@ static struct PyModuleDef _ctypes_testmodule = {
PyMODINIT_FUNC
PyInit__ctypes_test(void)
{
return PyModule_Create(&_ctypes_testmodule);
return PyModuleDef_Init(&_ctypes_testmodule);
}