micropython/tests/stress/recursive_data.py

14 wiersze
272 B
Python

# This tests that printing recursive data structure doesn't lead to segfault.
2017-03-11 00:16:26 +00:00
try:
import io
2017-03-11 00:16:26 +00:00
except ImportError:
print("SKIP")
raise SystemExit
l = [1, 2, 3, None]
l[-1] = l
try:
print(l, file=io.StringIO())
except RuntimeError:
print("RuntimeError")