Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
add-trailing-comma
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
add-trailing-comma
Commits
d3e57559
Kaydet (Commit)
d3e57559
authored
Tem 15, 2017
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't unhug things containing only a triple-quoted-string
üst
b293c120
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
add_trailing_comma.py
add_trailing_comma.py
+6
-1
add_trailing_comma_test.py
tests/add_trailing_comma_test.py
+4
-0
No files found.
add_trailing_comma.py
Dosyayı görüntüle @
d3e57559
...
...
@@ -251,9 +251,14 @@ def _fix_brace(fix_data, add_comma, tokens):
hug_open
=
tokens
[
first_brace
+
1
]
.
name
not
in
NON_CODING_TOKENS
hug_close
=
tokens
[
last_brace
-
1
]
.
name
not
in
NON_CODING_TOKENS
if
(
# Don't unhug single element things with a multi-line component
# inside.
not
fix_data
.
multi_arg
and
hug_open
and
tokens
[
last_brace
-
1
]
.
src
in
END_BRACES
tokens
[
last_brace
-
1
]
.
src
in
END_BRACES
or
# Don't unhug when containing a single token (such as a triple
# quoted string).
first_brace
+
2
==
last_brace
):
hug_open
=
hug_close
=
False
...
...
tests/add_trailing_comma_test.py
Dosyayı görüntüle @
d3e57559
...
...
@@ -312,6 +312,10 @@ def test_fixes_defs(src, expected):
'f([
\n
'
' 1, 2, 3,
\n
'
'])'
,
# Single triple-quoted-string argument, don't unhug
'textwrap.dedent("""
\n
'
' hi
\n
'
'""")'
,
),
)
def
test_noop_unhugs
(
src
):
...
...
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