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
77203adb
Kaydet (Commit)
77203adb
authored
Agu 17, 2010
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Ignore the exact ID value for the nested function in the dis.code_info tests
üst
fc8b205d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
test_dis.py
Lib/test/test_dis.py
+3
-4
No files found.
Lib/test/test_dis.py
Dosyayı görüntüle @
77203adb
...
...
@@ -259,7 +259,7 @@ Stack size: 7
Flags: OPTIMIZED, NEWLOCALS, VARARGS, VARKEYWORDS, GENERATOR
Constants:
0: None
1: <code object f at
{1}, file "{0}", line {2
}>
1: <code object f at
(.*), file "{0}", line {1
}>
Variable names:
0: x
1: y
...
...
@@ -276,7 +276,6 @@ Cell variables:
3: y
4: x
5: z"""
.
format
(
__file__
,
hex
(
id
(
co_tricky_nested_f
)),
co_tricky_nested_f
.
co_firstlineno
)
code_info_tricky_nested_f
=
"""
\
...
...
@@ -356,14 +355,14 @@ class CodeInfoTests(unittest.TestCase):
def
test_code_info
(
self
):
self
.
maxDiff
=
1000
for
x
,
expected
in
self
.
test_pairs
:
self
.
assert
Equal
(
dis
.
code_info
(
x
),
expected
)
self
.
assert
RegexpMatches
(
dis
.
code_info
(
x
),
expected
)
def
test_show_code
(
self
):
self
.
maxDiff
=
1000
for
x
,
expected
in
self
.
test_pairs
:
with
captured_stdout
()
as
output
:
dis
.
show_code
(
x
)
self
.
assert
Equal
(
output
.
getvalue
(),
expected
+
"
\n
"
)
self
.
assert
RegexpMatches
(
output
.
getvalue
(),
expected
+
"
\n
"
)
def
test_main
():
run_unittest
(
DisTests
,
CodeInfoTests
)
...
...
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