mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Set the recursion limit to 1000 -- 2500 was not enough, let's be
conservative.
This commit is contained in:
parent
1ac9802748
commit
349ff6f7e2
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ Py_MakePendingCalls(void)
|
||||||
|
|
||||||
/* The interpreter's recursion limit */
|
/* The interpreter's recursion limit */
|
||||||
|
|
||||||
static int recursion_limit = 2500;
|
static int recursion_limit = 1000;
|
||||||
|
|
||||||
int Py_GetRecursionLimit()
|
int Py_GetRecursionLimit()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue