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
8d6d7604
Kaydet (Commit)
8d6d7604
authored
Haz 30, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Collapse else: if: ... into elif:
üst
719e4e3b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
test_unparse.py
Demo/parser/test_unparse.py
+22
-0
unparse.py
Demo/parser/unparse.py
+10
-1
No files found.
Demo/parser/test_unparse.py
Dosyayı görüntüle @
8d6d7604
...
...
@@ -64,6 +64,24 @@ class_decorator = """\
class Foo: pass
"""
elif1
=
"""
\
if cond1:
suite1
elif cond2:
suite2
else:
suite3
"""
elif2
=
"""
\
if cond1:
suite1
elif cond2:
suite2
"""
class
ASTTestCase
(
unittest
.
TestCase
):
def
assertASTEqual
(
self
,
ast1
,
ast2
):
self
.
assertEqual
(
ast
.
dump
(
ast1
),
ast
.
dump
(
ast2
))
...
...
@@ -159,6 +177,10 @@ class UnparseTestCase(ASTTestCase):
def
test_class_definition
(
self
):
self
.
check_roundtrip
(
"class A(metaclass=type, *[], **{}): pass"
)
def
test_elifs
(
self
):
self
.
check_roundtrip
(
elif1
)
self
.
check_roundtrip
(
elif2
)
class
DirectoryTestCase
(
ASTTestCase
):
"""Test roundtrip behaviour on all files in Lib and Lib/test."""
...
...
Demo/parser/unparse.py
Dosyayı görüntüle @
8d6d7604
...
...
@@ -256,9 +256,18 @@ class Unparser:
self
.
fill
(
"if "
)
self
.
dispatch
(
t
.
test
)
self
.
enter
()
# XXX elif?
self
.
dispatch
(
t
.
body
)
self
.
leave
()
# collapse nested ifs into equivalent elifs.
while
(
t
.
orelse
and
len
(
t
.
orelse
)
==
1
and
isinstance
(
t
.
orelse
[
0
],
ast
.
If
)):
t
=
t
.
orelse
[
0
]
self
.
fill
(
"elif "
)
self
.
dispatch
(
t
.
test
)
self
.
enter
()
self
.
dispatch
(
t
.
body
)
self
.
leave
()
# final else
if
t
.
orelse
:
self
.
fill
(
"else"
)
self
.
enter
()
...
...
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