Files
UnrealEngine/Engine/Binaries/ThirdParty/Python3/Win64/Lib/test/dtracedata/gc.py
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
155 B
Python

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()