mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)
This commit is contained in:
parent
e48ac9c100
commit
137fd3d88a
20 changed files with 109 additions and 14 deletions
6
Parser/parser.c
generated
6
Parser/parser.c
generated
|
@ -7,7 +7,11 @@
|
|||
# define D(x)
|
||||
#endif
|
||||
|
||||
# define MAXSTACK 6000
|
||||
#ifdef __wasi__
|
||||
# define MAXSTACK 4000
|
||||
#else
|
||||
# define MAXSTACK 6000
|
||||
#endif
|
||||
static const int n_keyword_lists = 9;
|
||||
static KeywordToken *reserved_keywords[] = {
|
||||
(KeywordToken[]) {{NULL, -1}},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue