From d7292b5e9f7e0cd227032370bb6c46a39c252f38 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 17 Jun 2016 12:29:00 +0200 Subject: Issue #27336: Fix compilation on Windows Replace "#if WITH_THREAD" with "#ifdef WITH_THREAD". --- Python/pylifecycle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 12a5d4c..72a00e6 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -746,7 +746,7 @@ Py_NewInterpreter(void) if (!initialized) Py_FatalError("Py_NewInterpreter: call Py_Initialize first"); -#if WITH_THREAD +#ifdef WITH_THREAD /* Issue #10915, #15751: The GIL API doesn't work with multiple interpreters: disable PyGILState_Check(). */ _PyGILState_check_enabled = 0; @@ -1409,7 +1409,7 @@ exit: /* Clean up and exit */ #ifdef WITH_THREAD -#include "pythread.h" +# include "pythread.h" #endif static void (*pyexitfunc)(void) = NULL; -- cgit v0.12