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
f3694703
Kaydet (Commit)
f3694703
authored
Haz 02, 2005
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix compiler.ast.flatten function so that it works on lists.
üst
76276177
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
+13
-8
ast.py
Lib/compiler/ast.py
+4
-4
test_compiler.py
Lib/test/test_compiler.py
+5
-0
astgen.py
Tools/compiler/astgen.py
+4
-4
No files found.
Lib/compiler/ast.py
Dosyayı görüntüle @
f3694703
...
...
@@ -4,9 +4,9 @@ This file is automatically generated by Tools/compiler/astgen.py
"""
from
consts
import
CO_VARARGS
,
CO_VARKEYWORDS
def
flatten
(
list
):
def
flatten
(
seq
):
l
=
[]
for
elt
in
list
:
for
elt
in
seq
:
t
=
type
(
elt
)
if
t
is
tuple
or
t
is
list
:
for
elt2
in
flatten
(
elt
):
...
...
@@ -15,8 +15,8 @@ def flatten(list):
l
.
append
(
elt
)
return
l
def
flatten_nodes
(
list
):
return
[
n
for
n
in
flatten
(
list
)
if
isinstance
(
n
,
Node
)]
def
flatten_nodes
(
seq
):
return
[
n
for
n
in
flatten
(
seq
)
if
isinstance
(
n
,
Node
)]
nodes
=
{}
...
...
Lib/test/test_compiler.py
Dosyayı görüntüle @
f3694703
import
compiler
from
compiler.ast
import
flatten
import
os
import
test.test_support
import
unittest
...
...
@@ -60,6 +61,10 @@ class CompilerTest(unittest.TestCase):
for
child
in
node
.
getChildNodes
():
self
.
check_lineno
(
child
)
def
testFlatten
(
self
):
self
.
assertEquals
(
flatten
([
1
,
[
2
]]),
[
1
,
2
])
self
.
assertEquals
(
flatten
((
1
,
(
2
,))),
[
1
,
2
])
NOLINENO
=
(
compiler
.
ast
.
Module
,
compiler
.
ast
.
Stmt
,
compiler
.
ast
.
Discard
)
###############################################################################
...
...
Tools/compiler/astgen.py
Dosyayı görüntüle @
f3694703
...
...
@@ -234,9 +234,9 @@ This file is automatically generated by Tools/compiler/astgen.py
"""
from
consts
import
CO_VARARGS
,
CO_VARKEYWORDS
def
flatten
(
list
):
def
flatten
(
seq
):
l
=
[]
for
elt
in
list
:
for
elt
in
seq
:
t
=
type
(
elt
)
if
t
is
tuple
or
t
is
list
:
for
elt2
in
flatten
(
elt
):
...
...
@@ -245,8 +245,8 @@ def flatten(list):
l
.
append
(
elt
)
return
l
def
flatten_nodes
(
list
):
return
[
n
for
n
in
flatten
(
list
)
if
isinstance
(
n
,
Node
)]
def
flatten_nodes
(
seq
):
return
[
n
for
n
in
flatten
(
seq
)
if
isinstance
(
n
,
Node
)]
nodes
=
{}
...
...
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