PythonExtra/tests/stress/recursive_data.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
279 B
Python
Raw Permalink Normal View History

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