Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
a785c87d6eacbed81543a8afe3cb098fabb9610a
/
.
/
Lib
/
test
/
dtracedata
/
gc.py
blob: 144a783b7b7ef67a6fa5810283d7596d9e744a44 [
file
] [
log
] [
blame
]
Ćukasz Langa
a785c87
2016-09-09 17:37:37 -0700
[
diff
] [
blame^
]
1
import
gc
2
3
def
start
():
4
gc
.
collect
(
0
)
5
gc
.
collect
(
1
)
6
gc
.
collect
(
2
)
7
l
=
[]
8
l
.
append
(
l
)
9
del
l
10
gc
.
collect
(
2
)
11
12
gc
.
collect
()
13
start
()