Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
11a247df88f15b51feff8a3c46005676bb29b96e
/
.
/
Lib
/
test
/
dtracedata
/
gc.py
blob: 144a783b7b7ef67a6fa5810283d7596d9e744a44 [
file
] [
log
] [
blame
]
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
()