Skip to content

Commit f2060f1

Browse files
serhiy-storchakamiss-islington
authored andcommitted
pythongh-116322: Fix typo in the GH-ifdef check (pythonGH-122268)
(cherry picked from commit 9bb2e46) Co-authored-by: Serhiy Storchaka <[email protected]>
1 parent d1af4f5 commit f2060f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/moduleobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ _PyModule_CreateInitialized(PyModuleDef* module, int module_api_version)
250250
}
251251
}
252252
m->md_def = module;
253-
#ifdef Py_GIL_DISABLE
253+
#ifdef Py_GIL_DISABLED
254254
m->md_gil = Py_MOD_GIL_USED;
255255
#endif
256256
return (PyObject*)m;

0 commit comments

Comments
 (0)