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
70b5924e
Kaydet (Commit)
70b5924e
authored
May 12, 2019
tarafından
Batuhan Taşkaya
Kaydeden (comit)
Berker Peksag
May 12, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add support for f-string debugging syntax (#139)
Fixes #138
üst
d9e893eb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
1 deletion
+25
-1
code_gen.py
astor/code_gen.py
+5
-1
changelog.rst
docs/changelog.rst
+6
-0
test_code_gen.py
tests/test_code_gen.py
+14
-0
No files found.
astor/code_gen.py
Dosyayı görüntüle @
70b5924e
...
...
@@ -584,7 +584,11 @@ class SourceGenerator(ExplicitNodeVisitor):
self
.
write
(
value
.
s
.
replace
(
'{'
,
'{{'
)
.
replace
(
'}'
,
'}}'
))
elif
isinstance
(
value
,
ast
.
FormattedValue
):
with
self
.
delimit
(
'{}'
):
self
.
visit
(
value
.
value
)
# expr_text used for f-string debugging syntax.
if
getattr
(
value
,
'expr_text'
,
None
):
self
.
write
(
value
.
expr_text
)
else
:
self
.
visit
(
value
.
value
)
if
value
.
conversion
!=
-
1
:
self
.
write
(
'!
%
s'
%
chr
(
value
.
conversion
))
if
value
.
format_spec
is
not
None
:
...
...
docs/changelog.rst
Dosyayı görüntüle @
70b5924e
...
...
@@ -21,6 +21,12 @@ New features
.. _`Issue 126`: https://github.com/berkerpeksag/astor/issues/126
.. _`PR 134`: https://github.com/berkerpeksag/astor/pull/134
* Support Python 3.8's f-string debugging syntax.
(Reported and fixed by Batuhan Taskaya in `Issue 138`_ and `PR 139`_.)
.. _`Issue 138`: https://github.com/berkerpeksag/astor/issues/138
.. _`PR 139`: https://github.com/berkerpeksag/astor/pull/139
Bug fixes
~~~~~~~~~
...
...
tests/test_code_gen.py
Dosyayı görüntüle @
70b5924e
# coding: utf-8
"""
Part of the astor library for Python AST manipulation
...
...
@@ -664,6 +665,19 @@ class CodegenTestCase(unittest.TestCase, Comparisons):
'''
self
.
assertSrcRoundtripsGtVer
(
source
,
(
3
,
6
))
@unittest.skipUnless
(
sys
.
version_info
>=
(
3
,
8
,
0
,
"alpha"
,
4
),
"f-string debugging introduced in Python 3.8"
)
def
test_fstring_debugging
(
self
):
source
=
"""
x = f'{5=}'
y = f'{5=!r}'
z = f'{3*x+15=}'
f'{x=:}'
f'{x=:.2f}'
f'alpha α {pi=} ω omega'
"""
self
.
assertAstRoundtripsGtVer
(
source
,
(
3
,
8
))
def
test_docstring_function
(
self
):
source
=
'''
def f(arg):
...
...
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