8000 tests/misc/recursive_iternext.py: Increase depth N from 1000 to 2000. · lapsule/micropython@ddadbae · GitHub
[go: up one dir, main page]

Skip to content

Commit ddadbae

Browse files
committed
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.
1 parent 1bc8aa8 commit ddadbae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/misc/recursive_iternext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
try:
44
[0] * 10000
5-
N = 1000
5+
N = 2000
66
except:
77
N = 100
88

0 commit comments

Comments
 (0)
0