pikapython/test/python/gc/gc_circle.py
lyon 38388625ca support mark-sweep gc
change project name and url on kernal sources

rename global Value

format name

use g_PikaObjState

add gc chain

add gc_mark()

add printCanFree

add sub locals init

try use mark-sweep to solve circle-ref

use mark sweep to collect circle ref succeed

import mark-sweep GC

config_default

update
2023-03-05 12:57:27 +08:00

12 lines
135 B
Python

class Tree:
parent = None
child = []
def test():
a = Tree()
b = Tree()
a.child.append(b)
b.parent = a
test()