We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23a9c1 commit 64fe35cCopy full SHA for 64fe35c
Python/pylifecycle.c
@@ -746,7 +746,7 @@ Py_NewInterpreter(void)
746
if (!initialized)
747
Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
748
749
-#if WITH_THREAD
+#ifdef WITH_THREAD
750
/* Issue #10915, #15751: The GIL API doesn't work with multiple
751
interpreters: disable PyGILState_Check(). */
752
_PyGILState_check_enabled = 0;
@@ -1409,7 +1409,7 @@ Py_FatalError(const char *msg)
1409
/* Clean up and exit */
1410
1411
#ifdef WITH_THREAD
1412
-#include "pythread.h"
+# include "pythread.h"
1413
#endif
1414
1415
static void (*pyexitfunc)(void) = NULL;
0 commit comments