Increase default recursion limit to 1000 to match CPython

This commit is contained in:
K. Lange 2023-12-13 09:03:14 +09:00
parent f247bba985
commit 91740c8573

View File

@ -19,7 +19,7 @@
* @def KRK_CALL_FRAMES_MAX * @def KRK_CALL_FRAMES_MAX
* @brief Maximum depth of the call stack in managed-code function calls. * @brief Maximum depth of the call stack in managed-code function calls.
*/ */
#define KRK_CALL_FRAMES_MAX 64 #define KRK_CALL_FRAMES_MAX 1000
/** /**
* @def KRK_THREAD_SCRATCH_SIZE * @def KRK_THREAD_SCRATCH_SIZE