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
98a379ed
Kaydet (Commit)
98a379ed
authored
Haz 16, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add test for bug #751998.
üst
b47243ae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
test_descr.py
Lib/test/test_descr.py
+16
-0
No files found.
Lib/test/test_descr.py
Dosyayı görüntüle @
98a379ed
...
...
@@ -1267,6 +1267,22 @@ def slots():
g
==
g
new_objects
=
len
(
gc
.
get_objects
())
vereq
(
orig_objects
,
new_objects
)
class
H
(
object
):
__slots__
=
[
'a'
,
'b'
]
def
__init__
(
self
):
self
.
a
=
1
self
.
b
=
2
def
__del__
(
self
):
assert
self
.
a
==
1
assert
self
.
b
==
2
save_stderr
=
sys
.
stderr
sys
.
stderr
=
sys
.
stdout
h
=
H
()
try
:
del
h
finally
:
sys
.
stderr
=
save_stderr
def
slotspecials
():
if
verbose
:
print
"Testing __dict__ and __weakref__ in __slots__..."
...
...
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