1 2 3 4 5 6
# Test multiple references to the same cyclic object f = [] f.append(f) g = [f, f] g # Return=[[[...]], [[...]]]