mirror of
https://github.com/python/cpython.git
synced 2025-10-07 15:42:02 +00:00
GH-113655 Lower C recursion limit from 4000 to 3000 on Windows. (GH-114896)
This commit is contained in:
parent
d25d4ee60c
commit
41fde89e47
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ struct _ts {
|
||||||
#elif defined(__s390x__)
|
#elif defined(__s390x__)
|
||||||
# define Py_C_RECURSION_LIMIT 800
|
# define Py_C_RECURSION_LIMIT 800
|
||||||
#elif defined(_WIN32)
|
#elif defined(_WIN32)
|
||||||
# define Py_C_RECURSION_LIMIT 4000
|
# define Py_C_RECURSION_LIMIT 3000
|
||||||
#elif defined(_Py_ADDRESS_SANITIZER)
|
#elif defined(_Py_ADDRESS_SANITIZER)
|
||||||
# define Py_C_RECURSION_LIMIT 4000
|
# define Py_C_RECURSION_LIMIT 4000
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue