| 387 | assert p_copy.x is p_copy |
| 388 | |
| 389 | class PathWithCycle2(Path): |
| 390 | def __init__(self, *args, **kwargs): |
| 391 | super().__init__(*args, **kwargs) |
| 392 | self.x = [self] * 2 |
| 393 | |
| 394 | p2 = PathWithCycle2([[0, 0], [1, 1]], readonly=True) |
| 395 | p2_copy = p2.deepcopy() |
no outgoing calls
searching dependent graphs…