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.
pull/2147/merge
Damien George 2016-06-03 09:33:57 +01:00
rodzic 1bc8aa85a4
commit ddadbaed06
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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