Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
a53cf792
Kaydet (Commit)
a53cf792
authored
Eyl 15, 2000
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- add a new test
- document some of the tricky tests (hopefully correctly :)
üst
6a547c78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
test_gc.py
Lib/test/test_gc.py
+22
-0
No files found.
Lib/test/test_gc.py
Dosyayı görüntüle @
a53cf792
...
@@ -15,6 +15,7 @@ def test_dict():
...
@@ -15,6 +15,7 @@ def test_dict():
assert
gc
.
collect
()
==
1
assert
gc
.
collect
()
==
1
def
test_tuple
():
def
test_tuple
():
# since tuples are immutable we close the loop with a list
l
=
[]
l
=
[]
t
=
(
l
,)
t
=
(
l
,)
l
.
append
(
t
)
l
.
append
(
t
)
...
@@ -41,6 +42,7 @@ def test_instance():
...
@@ -41,6 +42,7 @@ def test_instance():
assert
gc
.
collect
()
>
0
assert
gc
.
collect
()
>
0
def
test_method
():
def
test_method
():
# Tricky: self.__init__ is a bound method, it references the instance.
class
A
:
class
A
:
def
__init__
(
self
):
def
__init__
(
self
):
self
.
init
=
self
.
__init__
self
.
init
=
self
.
__init__
...
@@ -50,6 +52,8 @@ def test_method():
...
@@ -50,6 +52,8 @@ def test_method():
assert
gc
.
collect
()
>
0
assert
gc
.
collect
()
>
0
def
test_finalizer
():
def
test_finalizer
():
# A() is uncollectable if it is part of a cycle, make sure it shows up
# in gc.garbage.
class
A
:
class
A
:
def
__del__
(
self
):
pass
def
__del__
(
self
):
pass
class
B
:
class
B
:
...
@@ -67,12 +71,29 @@ def test_finalizer():
...
@@ -67,12 +71,29 @@ def test_finalizer():
assert
id
(
gc
.
garbage
[
0
])
==
id_a
assert
id
(
gc
.
garbage
[
0
])
==
id_a
def
test_function
():
def
test_function
():
# Tricky: f -> d -> f, code should call d.clear() after the exec to
# break the cycle.
d
=
{}
d
=
{}
exec
(
"def f(): pass
\n
"
)
in
d
exec
(
"def f(): pass
\n
"
)
in
d
gc
.
collect
()
gc
.
collect
()
del
d
del
d
assert
gc
.
collect
()
==
2
assert
gc
.
collect
()
==
2
def
test_del
():
# __del__ methods can trigger collection, make this to happen
thresholds
=
gc
.
get_threshold
()
gc
.
enable
()
gc
.
set_threshold
(
1
)
class
A
:
def
__del__
(
self
):
dir
(
self
)
a
=
A
()
del
a
gc
.
disable
()
apply
(
gc
.
set_threshold
,
thresholds
)
def
test_all
():
def
test_all
():
...
@@ -88,6 +109,7 @@ def test_all():
...
@@ -88,6 +109,7 @@ def test_all():
test_method
()
test_method
()
test_finalizer
()
test_finalizer
()
test_function
()
test_function
()
test_del
()
# test gc.enable() even if GC is disabled by default
# test gc.enable() even if GC is disabled by default
gc
.
enable
()
gc
.
enable
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment