blob: 53fb30f9ffcdef5148a116755db4ea0e19e956c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# This tests that printing recursive data structure doesn't lead to segfault.
import _io as io
l = [1, 2, 3, None]
l[-1] = l
try:
print(l, file=io.StringIO())
except RuntimeError:
print("RuntimeError")
|