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.
This commit is contained in:
Damien George 2016-06-03 09:33:57 +01:00
parent 1bc8aa85a4
commit ddadbaed06
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
try:
[0] * 10000
N = 1000
N = 2000
except:
N = 100