From 0a7af4058f9f3f673e438e5e2cfc31d4dc04be98 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Wed, 11 Oct 2000 17:18:11 +0000 Subject: Use suggested workaround for PyOS_CheckStack causing failure of test_[s]re.py on Win64. This closes bug http://sourceforge.net/bugs/?func=detailbug&group_id=5470&bug_id=116516 --- Include/pythonrun.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pythonrun.h b/Include/pythonrun.h index e8f4f96..b963a06 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -88,7 +88,7 @@ extern DL_IMPORT(char) *(*PyOS_ReadlineFunctionPointer)(char *); to a 8k margin. */ #define PYOS_STACK_MARGIN 2048 -#if defined(WIN32) && defined(_MSC_VER) +#if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) /* Enable stack checking under Microsoft C */ #define USE_STACKCHECK #endif -- cgit v0.12