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:
parent
48fba733b9
commit
0a7af4058f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue