Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2a348c453954cbe7c2654a99a18bf08ee2826fc0 authored by Mariatta on 02 July 2020, 19:40:15 UTC
Update .github/workflows/stale.yml
Tip revision: 2a348c4
gc.py
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()
back to top