# test that the GC can trace nested objectstry:importgcexceptImportError:print("SKIP")raiseSystemExit# test a big shallow object pointing to many unique objectslst=[[i]foriinrange(200)]gc.collect()print(lst)# test a deep objectlst=[[[[[(i,j,k,l)]foriinrange(3)]forjinrange(3)]forkinrange(3)]forlinrange(3)]gc.collect()print(lst)