[Python-checkins] CVS: python/dist/src/Include pythonrun.h,2.36,2.37

Trent Mick python-dev@python.org
Wed, 11 Oct 2000 10:18:15 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27127/Include

Modified Files:
	pythonrun.h 
Log Message:
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



Index: pythonrun.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v
retrieving revision 2.36
retrieving revision 2.37
diff -C2 -r2.36 -r2.37
*** pythonrun.h	2000/09/16 16:31:31	2.36
--- pythonrun.h	2000/10/11 17:18:11	2.37
***************
*** 89,93 ****
  #define PYOS_STACK_MARGIN 2048
  
! #if defined(WIN32) && defined(_MSC_VER)
  /* Enable stack checking under Microsoft C */
  #define USE_STACKCHECK
--- 89,93 ----
  #define PYOS_STACK_MARGIN 2048
  
! #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER)
  /* Enable stack checking under Microsoft C */
  #define USE_STACKCHECK