mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
Issue #17206: On Windows, increase the stack size from 2 MB to 4.2 MB to fix
a stack overflow in the marshal module (fix a crash in test_marshal). Patch written by Jeremy Kloth.
This commit is contained in:
parent
0507bf56f0
commit
24e33acf8c
2 changed files with 5 additions and 1 deletions
|
|
@ -10,6 +10,10 @@ What's New in Python 3.4.0 Alpha 1?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #17206: On Windows, increase the stack size from 2 MB to 4.2 MB to fix
|
||||||
|
a stack overflow in the marshal module (fix a crash in test_marshal).
|
||||||
|
Patch written by Jeremy Kloth.
|
||||||
|
|
||||||
- Issue #3329: Implement the PEP 445: Add new APIs to customize Python memory
|
- Issue #3329: Implement the PEP 445: Add new APIs to customize Python memory
|
||||||
allocators.
|
allocators.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -243,7 +243,7 @@
|
||||||
<Link>
|
<Link>
|
||||||
<OutputFile>$(OutDir)python_d.exe</OutputFile>
|
<OutputFile>$(OutDir)python_d.exe</OutputFile>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
<StackReserveSize>2100000</StackReserveSize>
|
<StackReserveSize>4194304</StackReserveSize>
|
||||||
<BaseAddress>0x1d000000</BaseAddress>
|
<BaseAddress>0x1d000000</BaseAddress>
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue