Files

14 lines
155 B
Python
Raw Permalink Normal View History

2026-03-15 13:27:50 +00:00
import gc
def start():
gc.collect(0)
gc.collect(1)
gc.collect(2)
l = []
l.append(l)
del l
gc.collect(2)
gc.collect()
start()