From: Guido van Rossum Date: Fri, 1 Sep 2000 01:52:08 +0000 (+0000) Subject: Set the recursion limit to 1000 -- 2500 was not enough, let's be X-Git-Tag: v2.0b1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=349ff6f7e205646be5749dbcb5d8bb1ba4fa022b;p=python Set the recursion limit to 1000 -- 2500 was not enough, let's be conservative. --- diff --git a/Python/ceval.c b/Python/ceval.c index 63a24799c3..018c8af781 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -300,7 +300,7 @@ Py_MakePendingCalls(void) /* The interpreter's recursion limit */ -static int recursion_limit = 2500; +static int recursion_limit = 1000; int Py_GetRecursionLimit() {