mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)
(cherry picked from commit 137fd3d88a
)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
611d43c2a4
commit
7afccd34a6
20 changed files with 109 additions and 14 deletions
|
@ -37,7 +37,11 @@ EXTENSION_PREFIX = """\
|
|||
# define D(x)
|
||||
#endif
|
||||
|
||||
# define MAXSTACK 6000
|
||||
#ifdef __wasi__
|
||||
# define MAXSTACK 4000
|
||||
#else
|
||||
# define MAXSTACK 6000
|
||||
#endif
|
||||
|
||||
"""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue