Explain test_deepcopy_reflexive_list skip

This commit is contained in:
Padraic Fanning
2021-02-02 16:54:54 -05:00
parent e5e260a161
commit dde4dfdd09

View File

@@ -374,7 +374,7 @@ class TestCopy(unittest.TestCase):
self.assertIsNot(x, y)
self.assertIsNot(x[0], y[0])
@unittest.skip("TODO: RUSTPYTHON")
@unittest.skip("TODO: RUSTPYTHON, segmentation fault")
def test_deepcopy_reflexive_list(self):
x = []
x.append(x)