8000 [3.13] gh-116322: Fix typo in the GH-ifdef check (GH-122268) (#122284) · python/cpython@88a96fc · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

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)
0