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
This commit is contained in:
Trent Mick 2000-10-11 17:18:11 +00:00
parent 48fba733b9
commit 0a7af4058f
1 changed files with 1 additions and 1 deletions

View File

@ -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