You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
914 B
48 lines
914 B
# This tests that recursion with iternext doesn't lead to segfault.
|
|
|
|
# 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.
|
|
try:
|
|
# large stack/heap, eg unix
|
|
[0] * 80000
|
|
N = 2400
|
|
except:
|
|
try:
|
|
# medium, eg pyboard
|
|
[0] * 10000
|
|
N = 1000
|
|
except:
|
|
# small, eg esp8266
|
|
N = 100
|
|
|
|
try:
|
|
x = (1, 2)
|
|
for i in range(N):
|
|
x = enumerate(x)
|
|
tuple(x)
|
|
except RuntimeError:
|
|
print("RuntimeError")
|
|
|
|
try:
|
|
x = (1, 2)
|
|
for i in range(N):
|
|
x = filter(None, x)
|
|
tuple(x)
|
|
except RuntimeError:
|
|
print("RuntimeError")
|
|
|
|
try:
|
|
x = (1, 2)
|
|
for i in range(N):
|
|
x = map(max, x, ())
|
|
tuple(x)
|
|
except RuntimeError:
|
|
print("RuntimeError")
|
|
|
|
try:
|
|
x = (1, 2)
|
|
for i in range(N):
|
|
x = zip(x)
|
|
tuple(x)
|
|
except RuntimeError:
|
|
print("RuntimeError")
|
|
|