mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
7f5edaf090
ready to check where enable the mark_sweep auto gc with threshold failed, add some assert more assert about obj alive, dict mark not correct add pikaGC_try, but cannot run at any time markSweep crashed on keyword save gcRoot for obj to debug add debug point add kernal_debug config to keep more debug info use @res_<opt> to mark operation found self reference on __iter__() can not fix gc err around iter remove lock, only keep the self lock more obj info for debug only pikaui not pass only pikaui not pass
14 lines
159 B
Python
14 lines
159 B
Python
class Tree:
|
|
parent = None
|
|
child = []
|
|
|
|
def test():
|
|
a = Tree()
|
|
b = Tree()
|
|
a.child.append(b)
|
|
b.parent = a
|
|
|
|
test()
|
|
c = Tree()
|
|
print('end')
|