summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2014-11-01 15:15:16 -0700
committerSteve Dower <steve.dower@microsoft.com>2014-11-01 15:15:16 -0700
commitf6c69e6cc9aac35564a2a2a7ecc43fa8db6da975 (patch)
tree5e8d1c25246d54ecd408f41594395f8285cb7093 /Python/marshal.c
parent53683965aaf2895fbdb851e07436c6f86b48d0dc (diff)
downloadcpython-git-f6c69e6cc9aac35564a2a2a7ecc43fa8db6da975.tar.gz
#22734 marshal needs a lower stack depth for debug builds on Windows
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 1 insertions, 1 deletions
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