2015-06-03 17:41:06 -04:00
|
|
|
# This tests that recursion with iternext doesn't lead to segfault.
|
|
|
|
|
2016-06-03 10:09:45 -04: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 08:50:22 -05:00
|
|
|
try:
|
2016-06-03 10:09:45 -04:00
|
|
|
# large stack/heap, eg unix
|
|
|
|
[0] * 80000
|
2016-06-03 20:09:58 -04:00
|
|
|
N = 2400
|
2016-02-13 08:50:22 -05:00
|
|
|
except:
|
2016-06-03 10:09:45 -04:00
|
|
|
try:
|
|
|
|
# medium, eg pyboard
|
|
|
|
[0] * 10000
|
|
|
|
N = 1000
|
|
|
|
except:
|
|
|
|
# small, eg esp8266
|
|
|
|
N = 100
|
2016-02-13 08:50:22 -05:00
|
|
|
|
2015-06-03 17:41:06 -04:00
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 08:50:22 -05:00
|
|
|
for i in range(N):
|
2015-06-03 17:41:06 -04:00
|
|
|
x = enumerate(x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 08:50:22 -05:00
|
|
|
for i in range(N):
|
2015-06-03 17:41:06 -04:00
|
|
|
x = filter(None, x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 08:50:22 -05:00
|
|
|
for i in range(N):
|
2015-06-03 17:41:06 -04:00
|
|
|
x = map(max, x, ())
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
x = (1, 2)
|
2016-02-13 08:50:22 -05:00
|
|
|
for i in range(N):
|
2015-06-03 17:41:06 -04:00
|
|
|
x = zip(x)
|
|
|
|
tuple(x)
|
|
|
|
except RuntimeError:
|
|
|
|
print("RuntimeError")
|