From f42b3c7599d7777d057178da379b17249e118f0c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 12 Dec 2014 00:29:29 +0200 Subject: tests: Activate recursive_data.py test, now that io.StringIO is available. --- tests/misc/recursive_data.py_ | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 tests/misc/recursive_data.py_ (limited to 'tests/misc/recursive_data.py_') diff --git a/tests/misc/recursive_data.py_ b/tests/misc/recursive_data.py_ deleted file mode 100644 index 6a52a3c0e..000000000 --- a/tests/misc/recursive_data.py_ +++ /dev/null @@ -1,9 +0,0 @@ -# This tests that printing recursive data structure doesn't lead to segfault. -# Unfortunately, print() so far doesn't support "file "kwarg, so variable-len -# output of this test cannot be redirected, and this test cannot be validated. -l = [1, 2, 3, None] -l[-1] = l -try: - print(l) -except RuntimeError: - print("RuntimeError") -- cgit v1.2.3