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
363a326e
Kaydet (Commit)
363a326e
authored
Mar 06, 2017
tarafından
Ryan Gonzalez
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add support for variable annotations
üst
49a35d8f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
1 deletion
+22
-1
CHANGES
CHANGES
+2
-1
code_gen.py
astor/code_gen.py
+11
-0
op_util.py
astor/op_util.py
+1
-0
test_code_gen.py
tests/test_code_gen.py
+8
-0
No files found.
CHANGES
Dosyayı görüntüle @
363a326e
...
...
@@ -11,4 +11,5 @@
0.4.1 -- Added missing SourceGenerator.visit_arguments()
0.5 -- Added support for Python 3.5 infix matrix
multiplication
0.6 -- Added support for Python 3.6 f-strings and async comprehensions.
0.6 -- Added support for Python 3.6 f-strings, async comprehensions, and
variable annotations.
astor/code_gen.py
Dosyayı görüntüle @
363a326e
...
...
@@ -247,6 +247,17 @@ class SourceGenerator(ExplicitNodeVisitor):
self
.
statement
(
node
,
node
.
target
,
get_op_symbol
(
node
.
op
,
'
%
s= '
),
node
.
value
)
def
visit_AnnAssign
(
self
,
node
):
set_precedence
(
node
,
node
.
value
,
node
.
target
)
self
.
newline
(
node
)
if
not
node
.
simple
and
isinstance
(
node
.
target
,
ast
.
Name
):
self
.
write
(
'('
,
node
.
target
,
')'
)
else
:
self
.
write
(
node
.
target
)
self
.
write
(
': '
,
node
.
annotation
)
if
node
.
value
is
not
None
:
self
.
write
(
' = '
,
node
.
value
)
def
visit_ImportFrom
(
self
,
node
):
self
.
statement
(
node
,
'from '
,
node
.
level
*
'.'
,
node
.
module
or
''
,
' import '
)
...
...
astor/op_util.py
Dosyayı görüntüle @
363a326e
...
...
@@ -17,6 +17,7 @@ op_data = """
GeneratorExp 1
Assign 1
AnnAssign 1
AugAssign 0
Expr 0
Yield 1
...
...
tests/test_code_gen.py
Dosyayı görüntüle @
363a326e
...
...
@@ -373,5 +373,13 @@ class CodegenTestCase(unittest.TestCase):
"""
self
.
assertAstSourceEqualIfAtLeastVersion
(
source
,
(
3
,
6
))
def
test_annassign
(
self
):
source
=
"""
a: int
(b): Tuple[int, str, ...]
c.d[e].f: Any
"""
self
.
assertAstEqualIfAtLeastVersion
(
source
,
(
3
,
6
))
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