2015-06-03 22:41:06 +01:00
|
|
|
# This tests that recursion with iternext doesn't lead to segfault.
|
|
|
|
|
2016-06-03 15:09:45 +01:00
|
|
|
# We need to pick an N that is large enough to hit the recursion
|
|
|
|
# limit, but not too large that we run out of heap memory.
|
2016-02-13 13:50:22 +00:00
|
|
|
try:
|
2016-06-03 15:09:45 +01:00
|
|
|
# large stack/heap, eg unix
|
|
|
|
[0] * 80000
|
2016-06-04 01:09:58 +01:00
|
|
|
N = 2400
|
2016-02-13 13:50:22 +00:00
|
|
|
except:
|
2016-06-03 15:09:45 +01:00
|
|
|
try:
|
|
|
|
# medium, eg pyboard
|
|
|
|
[0] * 10000
|
|
|
|
N = 1000
|
|
|
|
except:
|
|
|
|
# small, eg esp8266
|
|
|
|
N = 100
|
2016-02-13 13:50:22 +00:00
|
|
|
|
2015-06-03 22:41:06 +01:00
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 13:50:22 +00:00
|
|
|
for i in range(N):
|
2015-06-03 22:41:06 +01:00
|
|
|
x = enumerate(x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 13:50:22 +00:00
|
|
|
for i in range(N):
|
2015-06-03 22:41:06 +01:00
|
|
|
x = filter(None, x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 13:50:22 +00:00
|
|
|
for i in range(N):
|
2015-06-03 22:41:06 +01:00
|
|
|
x = map(max, x, ())
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 13:50:22 +00:00
|
|
|
for i in range(N):
|
2015-06-03 22:41:06 +01:00
|
|
|
x = zip(x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|