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
4261a3e4
Kaydet (Commit)
4261a3e4
authored
Tem 19, 2017
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix extra comma in tuples which contain a fix in their first element
üst
47e21e15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
add_trailing_comma.py
add_trailing_comma.py
+8
-6
add_trailing_comma_test.py
tests/add_trailing_comma_test.py
+12
-0
No files found.
add_trailing_comma.py
Dosyayı görüntüle @
4261a3e4
...
...
@@ -347,16 +347,18 @@ def _fix_src(contents_text, py35_plus, py36_plus):
elif
key
in
visitor
.
literals
:
fixes
.
append
((
True
,
_find_simple
(
i
,
tokens
)))
# need to additionally handle literals afterwards as tuples report
# their starting index as the first element, which may be one of the
# above things.
if
key
in
visitor
.
tuples
:
fixes
.
append
((
True
,
_find_tuple
(
i
,
tokens
)))
for
add_comma
,
fix_data
in
fixes
:
if
fix_data
is
not
None
:
_fix_brace
(
fix_data
,
add_comma
,
tokens
)
# need to handle tuples afterwards as tuples report their starting
# starting index as the first element, which may be one of the above
# things.
if
key
in
visitor
.
tuples
:
fix_data
=
_find_tuple
(
i
,
tokens
)
if
fix_data
is
not
None
:
_fix_brace
(
fix_data
,
True
,
tokens
)
return
tokens_to_src
(
tokens
)
...
...
tests/add_trailing_comma_test.py
Dosyayı görüntüle @
4261a3e4
...
...
@@ -565,6 +565,18 @@ def test_noop_unhugs(src):
' "bar",
\n
'
')'
,
),
# Regression test for #29
(
'x = ([a,
\n
'
' b], None)'
,
'x = (
\n
'
' [
\n
'
' a,
\n
'
' b,
\n
'
' ], None,
\n
'
')'
,
),
),
)
def
test_fix_unhugs
(
src
,
expected
):
...
...
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