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
1256f1f4
Kaydet (Commit)
1256f1f4
authored
May 25, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #18063: fix some struct specifications in the tests for sys.getsizeof().
üst
a15b9553
80bc00f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test_sys.py
Lib/test/test_sys.py
+5
-5
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
1256f1f4
...
...
@@ -735,13 +735,13 @@ class SizeofTest(unittest.TestCase):
class
C
(
object
):
pass
check
(
C
.
__dict__
,
size
(
'P'
))
# BaseException
check
(
BaseException
(),
size
(
'5P
i
'
))
check
(
BaseException
(),
size
(
'5P
b
'
))
# UnicodeEncodeError
check
(
UnicodeEncodeError
(
""
,
""
,
0
,
0
,
""
),
size
(
'5P
i
2P2nP'
))
check
(
UnicodeEncodeError
(
""
,
""
,
0
,
0
,
""
),
size
(
'5P
b
2P2nP'
))
# UnicodeDecodeError
check
(
UnicodeDecodeError
(
""
,
b
""
,
0
,
0
,
""
),
size
(
'5P
i
2P2nP'
))
check
(
UnicodeDecodeError
(
""
,
b
""
,
0
,
0
,
""
),
size
(
'5P
b
2P2nP'
))
# UnicodeTranslateError
check
(
UnicodeTranslateError
(
""
,
0
,
1
,
""
),
size
(
'5P
i
2P2nP'
))
check
(
UnicodeTranslateError
(
""
,
0
,
1
,
""
),
size
(
'5P
b
2P2nP'
))
# ellipses
check
(
Ellipsis
,
size
(
''
))
# EncodingMap
...
...
@@ -883,7 +883,7 @@ class SizeofTest(unittest.TestCase):
samples
=
[
'1'
*
100
,
'
\xff
'
*
50
,
'
\u0100
'
*
40
,
'
\uffff
'
*
100
,
'
\U00010000
'
*
30
,
'
\U0010ffff
'
*
100
]
asciifields
=
"nn
i
P"
asciifields
=
"nn
b
P"
compactfields
=
asciifields
+
"nPn"
unicodefields
=
compactfields
+
"P"
for
s
in
samples
:
...
...
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