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
b7c0eed4
Kaydet (Commit)
b7c0eed4
authored
Tem 26, 2017
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Also unhug listcomps / dictcomps / setcomps
üst
bd9cb3fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
add_trailing_comma.py
add_trailing_comma.py
+3
-3
add_trailing_comma_test.py
tests/add_trailing_comma_test.py
+17
-0
No files found.
add_trailing_comma.py
Dosyayı görüntüle @
b7c0eed4
...
...
@@ -341,11 +341,11 @@ def _fix_src(contents_text, py35_plus, py36_plus):
add_comma
=
not
func
.
star_args
or
py36_plus
# functions can be treated as calls
fixes
.
append
((
add_comma
,
_find_call
(
func
,
i
,
tokens
)))
# Handle parenthesized things
elif
token
.
src
==
'('
:
fixes
.
append
((
False
,
_find_simple
(
i
,
tokens
)))
elif
key
in
visitor
.
literals
:
fixes
.
append
((
True
,
_find_simple
(
i
,
tokens
)))
# Handle parenthesized things, unhug of tuples, and comprehensions
elif
token
.
src
in
START_BRACES
:
fixes
.
append
((
False
,
_find_simple
(
i
,
tokens
)))
for
add_comma
,
fix_data
in
fixes
:
if
fix_data
is
not
None
:
...
...
tests/add_trailing_comma_test.py
Dosyayı görüntüle @
b7c0eed4
...
...
@@ -577,6 +577,23 @@ def test_noop_unhugs(src):
' ], None,
\n
'
')'
,
),
# Regression test for #32
(
'[a()
\n
'
' for b in c
\n
'
' if (
\n
'
' d
\n
'
' )
\n
'
']'
,
'[
\n
'
' a()
\n
'
' for b in c
\n
'
' if (
\n
'
' d
\n
'
' )
\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