| 375 | |
| 376 | def test_path_deepcopy_cycle(): |
| 377 | class PathWithCycle(Path): |
| 378 | def __init__(self, *args, **kwargs): |
| 379 | super().__init__(*args, **kwargs) |
| 380 | self.x = self |
| 381 | |
| 382 | p = PathWithCycle([[0, 0], [1, 1]], readonly=True) |
| 383 | p_copy = p.deepcopy() |
no outgoing calls
searching dependent graphs…