https://github.com/python/cpython/commit/88a96fc391d36f537a613c6efbe5980080156fea commit: 88a96fc391d36f537a613c6efbe5980080156fea branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: kumaraditya303 <[email protected]> date: 2024-07-25T14:58:34Z summary:
[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 9bb2e4623f504c44655436eae181d802f544fff9) Co-authored-by: Serhiy Storchaka <[email protected]> files: M Objects/moduleobject.c diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index 46995b948a28e7..92554de055c4e5 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.c @@ -250,7 +250,7 @@ _PyModule_CreateInitialized(PyModuleDef* module, int module_api_version) } } m->md_def = module; -#ifdef Py_GIL_DISABLE +#ifdef Py_GIL_DISABLED m->md_gil = Py_MOD_GIL_USED; #endif return (PyObject*)m; _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
