Skip to content

Commit 88a96fc

Browse files
[3.13] gh-116322: Fix typo in the GH-ifdef check (GH-122268) (#122284)
gh-116322: Fix typo in the GH-ifdef check (GH-122268) (cherry picked from commit 9bb2e46) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent d1af4f5 commit 88a96fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Objects/moduleobject.c

+1-1
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)