From f6c69e6cc9aac35564a2a2a7ecc43fa8db6da975 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Sat, 1 Nov 2014 15:15:16 -0700 Subject: #22734 marshal needs a lower stack depth for debug builds on Windows --- Python/marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/marshal.c') diff --git a/Python/marshal.c b/Python/marshal.c index ca64be3948..837aa4812c 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -19,7 +19,7 @@ * On Windows debug builds, reduce this value. */ #if defined(MS_WINDOWS) && defined(_DEBUG) -#define MAX_MARSHAL_STACK_DEPTH 1500 +#define MAX_MARSHAL_STACK_DEPTH 1000 #else #define MAX_MARSHAL_STACK_DEPTH 2000 #endif -- cgit v1.2.1