[Python-checkins] python/dist/src/PCbuild python.vcproj, 1.4,
1.5 pythonw.vcproj, 1.3, 1.4
tim_one at users.sourceforge.net
tim_one at users.sourceforge.net
Thu Aug 12 20:37:13 CEST 2004
Update of /cvsroot/python/python/dist/src/PCbuild
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7449/PCbuild
Modified Files:
python.vcproj pythonw.vcproj
Log Message:
Boosted the stack reservation for python.exe and python_w.exe from the
default 1MB to 2 million bytes. The test suite passes with -uall again
(test_compiler no longer drives WinXP into an insane state).
Index: python.vcproj
===================================================================
RCS file: /cvsroot/python/python/dist/src/PCbuild/python.vcproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** python.vcproj 12 Aug 2004 14:07:49 -0000 1.4
--- python.vcproj 12 Aug 2004 18:37:10 -0000 1.5
***************
*** 48,51 ****
--- 48,52 ----
ProgramDatabaseFile=".\./python.pdb"
SubSystem="1"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="1"/>
***************
*** 110,113 ****
--- 111,115 ----
ProgramDatabaseFile=".\./python_d.pdb"
SubSystem="1"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="1"/>
***************
*** 180,183 ****
--- 182,186 ----
ProgramDatabaseFile=".\./python.pdb"
SubSystem="1"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="0"/>
Index: pythonw.vcproj
===================================================================
RCS file: /cvsroot/python/python/dist/src/PCbuild/pythonw.vcproj,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pythonw.vcproj 20 Jul 2004 14:37:48 -0000 1.3
--- pythonw.vcproj 12 Aug 2004 18:37:10 -0000 1.4
***************
*** 43,46 ****
--- 43,47 ----
ProgramDatabaseFile=".\./pythonw_d.pdb"
SubSystem="2"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="1"/>
***************
*** 109,112 ****
--- 110,114 ----
ProgramDatabaseFile=".\./pythonw.pdb"
SubSystem="2"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="1"/>
***************
*** 180,183 ****
--- 182,186 ----
ProgramDatabaseFile=".\./pythonw.pdb"
SubSystem="2"
+ StackReserveSize="2000000"
BaseAddress="0x1d000000"
TargetMachine="0"/>
More information about the Python-checkins
mailing list