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
4efb5181
Kaydet (Commit)
4efb5181
authored
Haz 06, 2008
tarafından
Robert Schuppenies
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 3049: Some 3k sizeof tests fail.
üst
f086fdd3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
test_sys.py
Lib/test/test_sys.py
+10
-13
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
4efb5181
...
...
@@ -424,18 +424,15 @@ class SizeofTest(unittest.TestCase):
return
x
return
inner
self
.
check_sizeof
(
get_cell
()
.
__closure__
[
0
],
h
+
p
)
# code
XXX wrong size
# self.check_sizeof(get_cell().__code__, h + self.align(4
*i) + 8*p +\
#
self.align(i) + 2*p)
# code
self
.
check_sizeof
(
get_cell
()
.
__code__
,
h
+
self
.
align
(
5
*
i
)
+
8
*
p
+
\
self
.
align
(
i
)
+
2
*
p
)
# complex
self
.
check_sizeof
(
complex
(
0
,
1
),
h
+
2
*
8
)
# enumerate
self
.
check_sizeof
(
enumerate
([]),
h
+
l
+
3
*
p
)
# reverse
self
.
check_sizeof
(
reversed
(
''
),
h
+
l
+
p
)
# file XXX wrong size
#self.check_sizeof(self.file, h + 4*p + self.align(2*i) + 4*p +\
# self.align(3*i) + 3*p + self.align(i))
# float
self
.
check_sizeof
(
float
(
0
),
h
+
8
)
# function
...
...
@@ -469,13 +466,13 @@ class SizeofTest(unittest.TestCase):
class
class_newstyle
(
object
):
def
method
():
pass
# type (PyTypeObject + PyNumberMethods +
PyMappingMethods +
# PySequenceMethods +
PyBufferProcs)
# XXX wrong size
# len_typeobject = p + 2*l + 15*p + l + 4*p + l + 9*p + l + 11*p
# self.check_sizeof(class_newstyle,
# h + len_typeobject + 42*p + 10*p + 3*p + 6*p)
# type (PyTypeObject + PyNumberMethods + PyMappingMethods +
# PySequenceMethods + PyBufferProcs)
self
.
check_sizeof
(
class_newstyle
,
h
+
\
p
+
2
*
l
+
15
*
p
+
l
+
4
*
p
+
l
+
9
*
p
+
l
+
11
*
p
+
\
self
.
align
(
4
)
+
\
16
*
p
+
self
.
align
(
i
)
+
20
*
p
+
\
10
*
p
+
3
*
p
+
2
*
p
+
2
*
p
);
def
test_specialtypes
(
self
):
i
=
self
.
i
...
...
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