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
094c9e58
Kaydet (Commit)
094c9e58
authored
Haz 30, 2000
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove all prints (since the prints where of memory locations)
üst
a44d353e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
23 deletions
+0
-23
test_gc
Lib/test/output/test_gc
+0
-10
test_gc.py
Lib/test/test_gc.py
+0
-13
No files found.
Lib/test/output/test_gc
Dosyayı görüntüle @
094c9e58
test_gc
list 0x831a754
dict 0x831a754
list 0x831a754
tuple 0x831a734
class 0x831a794
<test_gc.A instance at 831a754>
a <test_gc.A instance at 831a754>
b <test_gc.B instance at 831a95c>
dict 0x831a9bc
func 0x831d9e4
Lib/test/test_gc.py
Dosyayı görüntüle @
094c9e58
...
...
@@ -3,7 +3,6 @@ import gc
def
test_list
():
l
=
[]
l
.
append
(
l
)
print
'list 0x
%
x'
%
id
(
l
)
gc
.
collect
()
del
l
assert
gc
.
collect
()
==
1
...
...
@@ -11,7 +10,6 @@ def test_list():
def
test_dict
():
d
=
{}
d
[
1
]
=
d
print
'dict 0x
%
x'
%
id
(
d
)
gc
.
collect
()
del
d
assert
gc
.
collect
()
==
1
...
...
@@ -20,8 +18,6 @@ def test_tuple():
l
=
[]
t
=
(
l
,)
l
.
append
(
t
)
print
'list 0x
%
x'
%
id
(
l
)
print
'tuple 0x
%
x'
%
id
(
t
)
gc
.
collect
()
del
t
del
l
...
...
@@ -31,7 +27,6 @@ def test_class():
class
A
:
pass
A
.
a
=
A
print
'class 0x
%
x'
%
id
(
A
)
gc
.
collect
()
del
A
assert
gc
.
collect
()
>
0
...
...
@@ -41,7 +36,6 @@ def test_instance():
pass
a
=
A
()
a
.
a
=
a
print
repr
(
a
)
gc
.
collect
()
del
a
assert
gc
.
collect
()
>
0
...
...
@@ -65,8 +59,6 @@ def test_finalizer():
id_a
=
id
(
a
)
b
=
B
()
b
.
b
=
b
print
'a'
,
repr
(
a
)
print
'b'
,
repr
(
b
)
gc
.
collect
()
gc
.
garbage
[:]
=
[]
del
a
...
...
@@ -77,16 +69,12 @@ def test_finalizer():
def
test_function
():
d
=
{}
exec
(
"def f(): pass
\n
"
)
in
d
print
'dict 0x
%
x'
%
id
(
d
)
print
'func 0x
%
x'
%
id
(
d
[
'f'
])
gc
.
collect
()
del
d
assert
gc
.
collect
()
==
2
def
test_all
():
debug
=
gc
.
get_debug
()
gc
.
set_debug
(
gc
.
DEBUG_LEAK
|
gc
.
DEBUG_STATS
)
test_list
()
test_dict
()
test_tuple
()
...
...
@@ -95,6 +83,5 @@ def test_all():
test_method
()
test_finalizer
()
test_function
()
gc
.
set_debug
(
debug
)
test_all
()
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