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
a1fd0789
Kaydet (Commit)
a1fd0789
authored
Eyl 10, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Try to fix sizeof unit tests on dict
Issue #28056 and issue #26058.
üst
fef7e94f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
test_ordered_dict.py
Lib/test/test_ordered_dict.py
+2
-1
test_sys.py
Lib/test/test_sys.py
+3
-3
No files found.
Lib/test/test_ordered_dict.py
Dosyayı görüntüle @
a1fd0789
...
...
@@ -668,7 +668,8 @@ class CPythonOrderedDictTests(OrderedDictTests, unittest.TestCase):
size
=
support
.
calcobjsize
check
=
self
.
check_sizeof
basicsize
=
size
(
'n2P3PnPn2P'
)
+
8
+
calcsize
(
'2nP2n'
)
basicsize
=
size
(
'nQ2P'
+
'3PnPn2P'
)
+
calcsize
(
'2nP2n'
)
entrysize
=
calcsize
(
'n2P'
)
p
=
calcsize
(
'P'
)
nodesize
=
calcsize
(
'Pn2P'
)
...
...
Lib/test/test_sys.py
Dosyayı görüntüle @
a1fd0789
...
...
@@ -937,9 +937,9 @@ class SizeofTest(unittest.TestCase):
# method-wrapper (descriptor object)
check
({}
.
__iter__
,
size
(
'2P'
))
# dict
check
({},
size
(
'n
2P'
)
+
8
+
calcsize
(
'2nP2n'
)
+
8
+
(
8
*
2
//
3
)
*
calcsize
(
'n2P'
))
check
({},
size
(
'n
Q2P'
)
+
calcsize
(
'2nP2n'
)
+
8
+
(
8
*
2
//
3
)
*
calcsize
(
'n2P'
))
longdict
=
{
1
:
1
,
2
:
2
,
3
:
3
,
4
:
4
,
5
:
5
,
6
:
6
,
7
:
7
,
8
:
8
}
check
(
longdict
,
size
(
'n
2P'
)
+
8
+
calcsize
(
'2nP2n'
)
+
16
+
(
16
*
2
//
3
)
*
calcsize
(
'n2P'
))
check
(
longdict
,
size
(
'n
Q2P'
)
+
calcsize
(
'2nP2n'
)
+
16
+
(
16
*
2
//
3
)
*
calcsize
(
'n2P'
))
# dictionary-keyview
check
({}
.
keys
(),
size
(
'P'
))
# dictionary-valueview
...
...
@@ -1103,7 +1103,7 @@ class SizeofTest(unittest.TestCase):
class
newstyleclass
(
object
):
pass
check
(
newstyleclass
,
s
)
# dict with shared keys
check
(
newstyleclass
()
.
__dict__
,
size
(
'n
2P'
+
'2nP2n'
)
+
8
)
check
(
newstyleclass
()
.
__dict__
,
size
(
'n
Q2P'
+
'2nP2n'
)
)
# unicode
# each tuple contains a string and its expected character size
# don't put any static strings here, as they may contain
...
...
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