Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
astor
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
astor
Commits
0d5faf3a
Kaydet (Commit)
0d5faf3a
authored
Mar 13, 2015
tarafından
Whyz Geek
Kaydeden (comit)
Berker Peksag
Mar 14, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added missing arguments vistor from Armin's original repo
üst
23c3432b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
1 deletion
+13
-1
AUTHORS
AUTHORS
+1
-0
CHANGES
CHANGES
+1
-0
__init__.py
astor/__init__.py
+1
-1
codegen.py
astor/codegen.py
+3
-0
test_codegen.py
tests/test_codegen.py
+7
-0
No files found.
AUTHORS
Dosyayı görüntüle @
0d5faf3a
...
...
@@ -8,3 +8,4 @@ And with some modifications based on Armin's code:
* Patrick Maupin <pmaupin@gmail.com>
* Abhishek L <abhishek.lekshmanan@gmail.com>
* Bob Tolbert <bob@eyesopen.com>
* Whyzgeek <whyzgeek@gmail.com>
CHANGES
Dosyayı görüntüle @
0d5faf3a
...
...
@@ -8,3 +8,4 @@
information.
0.4 -- Added a visitor for NameConstant.
Added initial test suite and documentation.
0.4.1 -- Added missing SourceGenerator.visit_arguments()
astor/__init__.py
Dosyayı görüntüle @
0d5faf3a
...
...
@@ -9,7 +9,7 @@ Copyright 2013 (c) Berker Peksag
"""
__version__
=
'0.4'
__version__
=
'0.4
.1
'
from
.codegen
import
to_source
# NOQA
from
.misc
import
iter_node
,
dump
,
all_symbols
,
get_anyop
# NOQA
...
...
astor/codegen.py
Dosyayı görüntüle @
0d5faf3a
...
...
@@ -507,3 +507,6 @@ class SourceGenerator(ExplicitNodeVisitor):
if
node
.
ifs
:
for
if_
in
node
.
ifs
:
self
.
write
(
' if '
,
if_
)
def
visit_arguments
(
self
,
node
):
self
.
signature
(
node
)
tests/test_codegen.py
Dosyayı görüntüle @
0d5faf3a
...
...
@@ -47,6 +47,13 @@ class CodegenTestCase(unittest.TestCase):
source
=
"del obj.x"
self
.
assertAstSourceEqual
(
source
)
def
test_arguments
(
self
):
source
=
textwrap
.
dedent
(
"""
\
j = [1, 2, 3]
def test(a1, a2, b1=j, b2='123', b3={}, b4=[]):
pass"""
)
self
.
assertAstSourceEqual
(
source
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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