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
f02aa65a
Kaydet (Commit)
f02aa65a
authored
Eyl 28, 2011
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use compile() instead of eval().
üst
0c9fe4d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
test_sys.py
Lib/test/test_sys.py
+4
-6
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
f02aa65a
...
...
@@ -856,12 +856,10 @@ class SizeofTest(unittest.TestCase):
# verify that the UTF-8 size is accounted for
s
=
chr
(
0x4000
)
# 4 bytes canonical representation
check
(
s
,
size
(
compactfields
)
+
4
)
try
:
# eval() will trigger the generation of the UTF-8 representation
# as a side effect
eval
(
s
)
except
NameError
:
check
(
s
,
size
(
compactfields
)
+
4
+
4
)
# compile() will trigger the generation of the UTF-8
# representation as a side effect
compile
(
s
,
"<stdin>"
,
"eval"
)
check
(
s
,
size
(
compactfields
)
+
4
+
4
)
# TODO: add check that forces the presence of wchar_t representation
# TODO: add check that forces layout of unicodefields
# weakref
...
...
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