summaryrefslogtreecommitdiffstats
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorTrent Mick <trentm@activestate.com>2000-10-11 17:18:11 (GMT)
committerTrent Mick <trentm@activestate.com>2000-10-11 17:18:11 (GMT)
commit0a7af4058f9f3f673e438e5e2cfc31d4dc04be98 (patch)
treedbd05d7aed2ae645cf1194ae9b05c5f54accb514 /Include/pythonrun.h
parent48fba733b90134e738724f2c03b1eb2dfe0d7325 (diff)
downloadcpython-0a7af4058f9f3f673e438e5e2cfc31d4dc04be98.zip
cpython-0a7af4058f9f3f673e438e5e2cfc31d4dc04be98.tar.gz
cpython-0a7af4058f9f3f673e438e5e2cfc31d4dc04be98.tar.bz2
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
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h2
1 files changed, 1 insertions, 1 deletions
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