mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue