diff -r e377d568928b Include/ceval.h --- a/Include/ceval.h Thu Oct 01 11:55:52 2015 +0300 +++ b/Include/ceval.h Thu Oct 01 13:03:02 2015 +0200 @@ -95,7 +95,7 @@ PyAPI_DATA(int) _Py_CheckRecursionLimit; #endif #define _Py_MakeEndRecCheck(x) \ - (--(x) < ((_Py_CheckRecursionLimit > 100) \ + (--(x) < ((_Py_CheckRecursionLimit > 200) \ ? (_Py_CheckRecursionLimit - 50) \ : (3 * (_Py_CheckRecursionLimit >> 2))))