]> granicus.if.org Git - python/commitdiff
Set the recursion limit to 1000 -- 2500 was not enough, let's be
authorGuido van Rossum <guido@python.org>
Fri, 1 Sep 2000 01:52:08 +0000 (01:52 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 1 Sep 2000 01:52:08 +0000 (01:52 +0000)
conservative.

Python/ceval.c

index 63a24799c30a8816382fc60d4c674e13615e7a45..018c8af7811708b788e4e5c98f72c35280c623a7 100644 (file)
@@ -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()
 {