mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
14 lines
155 B
Python
Vendored
14 lines
155 B
Python
Vendored
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()
|