[Python-checkins] r61509 - python/trunk/PCbuild/python.vcproj
trent.nelson
python-checkins at python.org
Tue Mar 18 08:02:12 CET 2008
Author: trent.nelson
Date: Tue Mar 18 08:02:12 2008
New Revision: 61509
Modified:
python/trunk/PCbuild/python.vcproj
Log:
Issue 2286: bump up the stack size of the 64-bit debug python_d.exe to 2100000. The default value of 200000 causes a stack overflow at 1965 iterations of r_object() in marshal.c, 35 iterations before the 2000 limit enforced by MAX_MARSHAL_STACK_DEPTH.
Modified: python/trunk/PCbuild/python.vcproj
==============================================================================
--- python/trunk/PCbuild/python.vcproj (original)
+++ python/trunk/PCbuild/python.vcproj Tue Mar 18 08:02:12 2008
@@ -290,7 +290,7 @@
AdditionalDependencies="odbccp32.lib"
OutputFile="$(OutDir)\python_d.exe"
SubSystem="1"
- StackReserveSize="2000000"
+ StackReserveSize="2100000"
BaseAddress="0x1d000000"
/>
<Tool
More information about the Python-checkins
mailing list