File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ struct _ts {
195
195
// higher stack memory usage than a release build: use a lower limit.
196
196
# if defined(__wasi__ )
197
197
// Based on wasmtime 16.
198
- # define Py_C_RECURSION_LIMIT 350
198
+ # define Py_C_RECURSION_LIMIT 300
199
199
# else
200
200
# define Py_C_RECURSION_LIMIT 500
201
201
# endif
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ def __missing__(self, key):
141
141
return int (key .removeprefix ("_number_" ))
142
142
143
143
# Need more than 256 variables to use EXTENDED_ARGS
144
- variables = 300
144
+ variables = 270
145
145
code = "lambda: " + "+" .join (f"_number_{ i } " for i in range (variables ))
146
146
sum_func = eval (code , MyGlobals ())
147
147
expected = sum (range (variables ))
You can’t perform that action at this time.
0 commit comments