Skip to content

Commit bbdac94

Browse files
committed
Further reduce C recursion limit for s390
1 parent a8c8eca commit bbdac94

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
@@ -224,7 +224,7 @@ struct _ts {
224224
// recursions, sometimes less. 500 is a more conservative limit.
225225
# define Py_C_RECURSION_LIMIT 500
226226
#elif defined(__s390x__)
227-
# define Py_C_RECURSION_LIMIT 1500
227+
# define Py_C_RECURSION_LIMIT 1200
228228
#else
229229
// This value is duplicated in Lib/test/support/__init__.py
230230
# define Py_C_RECURSION_LIMIT 8000

0 commit comments

Comments
 (0)