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
f87ae3b5
Kaydet (Commit)
f87ae3b5
authored
May 14, 2018
tarafından
Radomír Bosák
Kaydeden (comit)
Berker Peksag
May 15, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Create a separate function for triplequote string representation
üst
524d525e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
code_gen.py
astor/code_gen.py
+2
-2
string_repr.py
astor/string_repr.py
+7
-1
No files found.
astor/code_gen.py
Dosyayı görüntüle @
f87ae3b5
...
...
@@ -22,7 +22,7 @@ import sys
from
.op_util
import
get_op_symbol
,
get_op_precedence
,
Precedence
from
.node_util
import
ExplicitNodeVisitor
from
.string_repr
import
pretty_string
,
_prep_triple_quotes
from
.string_repr
import
pretty_string
,
string_triplequote_repr
from
.source_repr
import
pretty_source
...
...
@@ -249,7 +249,7 @@ class SourceGenerator(ExplicitNodeVisitor):
self
.
newline
()
self
.
indentation
+=
indent
self
.
write
(
'"""
%
s"""'
%
_prep_triple_quotes
(
value
))
self
.
write
(
string_triplequote_repr
(
value
))
self
.
indentation
-=
indent
def
visit_arguments
(
self
,
node
):
...
...
astor/string_repr.py
Dosyayı görüntüle @
f87ae3b5
...
...
@@ -55,6 +55,12 @@ def _prep_triple_quotes(s, mysplit=mysplit, replacements=replacements):
return
''
.
join
(
s
)
def
string_triplequote_repr
(
s
):
"""Return string's python representation in triple quotes.
"""
return
'"""
%
s"""'
%
_prep_triple_quotes
(
s
)
def
pretty_string
(
s
,
embedded
,
current_line
,
uni_lit
=
False
,
min_trip_str
=
20
,
max_line
=
100
):
"""There are a lot of reasons why we might not want to or
...
...
@@ -91,7 +97,7 @@ def pretty_string(s, embedded, current_line, uni_lit=False,
if
total_len
<
max_line
and
not
_properly_indented
(
s
,
line_indent
):
return
default
fancy
=
'"""
%
s"""'
%
_prep_triple_quotes
(
s
)
fancy
=
string_triplequote_repr
(
s
)
# Sometimes this doesn't work. One reason is that
# the AST has no understanding of whether \r\n was
...
...
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