From ddadbaed06913dd05f786a30bca820f8a58c11c3 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 3 Jun 2016 09:33:57 +0100 Subject: [PATCH] tests/misc/recursive_iternext.py: Increase depth N from 1000 to 2000. This makes the test reliably overflow the recursion limit (which is the correct behaviour) on Mac OS X. --- tests/misc/recursive_iternext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/misc/recursive_iternext.py b/tests/misc/recursive_iternext.py index 2723d3c10c..11c49d1f8c 100644 --- a/tests/misc/recursive_iternext.py +++ b/tests/misc/recursive_iternext.py @@ -2,7 +2,7 @@ try: [0] * 10000 - N = 1000 + N = 2000 except: N = 100