diff options
author | Mark Shannon <mark@hotpy.org> | 2024-01-16 09:32:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-16 09:32:01 (GMT) |
commit | 17b73ab99ef12f89d41acec7500a244e68b1aaa4 (patch) | |
tree | bcde8fca4dc4dae4f9ed5369a4ea23bb825f15bb /Parser/asdl_c.py | |
parent | 6c502ba809ff662a5eebf8c6778dec6bd28918fb (diff) | |
download | cpython-17b73ab99ef12f89d41acec7500a244e68b1aaa4.zip cpython-17b73ab99ef12f89d41acec7500a244e68b1aaa4.tar.gz cpython-17b73ab99ef12f89d41acec7500a244e68b1aaa4.tar.bz2 |
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
Diffstat (limited to 'Parser/asdl_c.py')
-rwxr-xr-x | Parser/asdl_c.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index 4bb3373..ce92672 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1388,15 +1388,14 @@ PyObject* PyAST_mod2obj(mod_ty t) int starting_recursion_depth; /* Be careful here to prevent overflow. */ - int COMPILER_STACK_FRAME_SCALE = 2; PyThreadState *tstate = _PyThreadState_GET(); if (!tstate) { return NULL; } struct validator vstate; - vstate.recursion_limit = Py_C_RECURSION_LIMIT * COMPILER_STACK_FRAME_SCALE; + vstate.recursion_limit = Py_C_RECURSION_LIMIT; int recursion_depth = Py_C_RECURSION_LIMIT - tstate->c_recursion_remaining; - starting_recursion_depth = recursion_depth * COMPILER_STACK_FRAME_SCALE; + starting_recursion_depth = recursion_depth; vstate.recursion_depth = starting_recursion_depth; PyObject *result = ast2obj_mod(state, &vstate, t); |