Skip to content

Commit c5d0a50

Browse files
committed
Give address sanitizer build a bit more C recursion depth
1 parent ea12238 commit c5d0a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/cpython/pystate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ struct _ts {
228228
#elif defined(_WIN32)
229229
# define Py_C_RECURSION_LIMIT 4000
230230
#elif defined(_Py_ADDRESS_SANITIZER)
231-
# define Py_C_RECURSION_LIMIT 7000
231+
# define Py_C_RECURSION_LIMIT 8000
232232
#else
233233
// This value is duplicated in Lib/test/support/__init__.py
234234
# define Py_C_RECURSION_LIMIT 10000

0 commit comments

Comments
 (0)