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
eabafebf
Kaydet (Commit)
eabafebf
authored
Mar 07, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
This test relied on significant trailing whitespace in a string literal.
Evil.
üst
959c7727
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
test_dis.py
Lib/test/test_dis.py
+12
-7
No files found.
Lib/test/test_dis.py
Dosyayı görüntüle @
eabafebf
...
...
@@ -10,18 +10,18 @@ import unittest
# placement is crucial!!! move the start of _f and you have to adjust the
# line numbers in dis_f
def
_f
(
a
):
print
a
return
1
print
a
return
1
dis_f
=
"""
\
13 0 LOAD_FAST 0 (a)
3 PRINT_ITEM
4 PRINT_NEWLINE
3 PRINT_ITEM
4 PRINT_NEWLINE
14 5 LOAD_CONST 1 (1)
8 RETURN_VALUE
8 RETURN_VALUE
9 LOAD_CONST 0 (None)
12 RETURN_VALUE
12 RETURN_VALUE
"""
class
DisTests
(
unittest
.
TestCase
):
...
...
@@ -43,7 +43,12 @@ class DisTests(unittest.TestCase):
sys
.
stdout
=
s
dis
.
dis
(
_f
)
sys
.
stdout
=
save_stdout
self
.
assertEqual
(
dis_f
,
s
.
getvalue
())
got
=
s
.
getvalue
()
# Trim trailing blanks (if any).
lines
=
got
.
split
(
'
\n
'
)
lines
=
[
line
.
rstrip
()
for
line
in
lines
]
got
=
'
\n
'
.
join
(
lines
)
self
.
assertEqual
(
dis_f
,
got
)
def
test_main
():
run_unittest
(
DisTests
)
...
...
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