Skip to content

Commit e8cf5bd

Browse files
committed
Revert "Try making WASI Debug recursion limit 400"
It doesn't work. I'm giving up. This reverts commit 877a005.
1 parent 2841841 commit e8cf5bd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Include/cpython/pystate.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,7 @@ struct _ts {
193193
#ifdef Py_DEBUG
194194
// A debug build is likely built with low optimization level which implies
195195
// higher stack memory usage than a release build: use a lower limit.
196-
#if defined(__wasi__)
197-
  // On WASI it's even worse.
198-
# define Py_C_RECURSION_LIMIT 400
199-
#else
200196
# define Py_C_RECURSION_LIMIT 500
201-
#endif
202197
#elif defined(__s390x__)
203198
# define Py_C_RECURSION_LIMIT 800
204199
#elif defined(_WIN32) && defined(_M_ARM64)

0 commit comments

Comments
 (0)