Skip to content

Commit 661afd4

Browse files
authored
#ifdef, not #if
1 parent 6611db7 commit 661afd4

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
@@ -52,7 +52,7 @@ _PyModule_IsExtension(PyObject *obj)
5252
PyObject*
5353
PyModuleDef_Init(PyModuleDef* def)
5454
{
55-
#if Py_GIL_DISABLED
55+
#ifdef Py_GIL_DISABLED
5656
// Check that this def does not come from a non-free-threading ABI.
5757
//
5858
// This is meant as a "sanity check"; users should never rely on it.

0 commit comments

Comments
 (0)