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
ee808047
Kaydet (Commit)
ee808047
authored
Tem 18, 2017
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix parsing of zero-length tokens
üst
3343fe9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
add_trailing_comma.py
add_trailing_comma.py
+3
-0
add_trailing_comma_test.py
tests/add_trailing_comma_test.py
+5
-1
No files found.
add_trailing_comma.py
Dosyayı görüntüle @
ee808047
...
...
@@ -325,6 +325,9 @@ def _fix_src(contents_text, py35_plus, py36_plus):
tokens
=
src_to_tokens
(
contents_text
)
for
i
,
token
in
_changing_list
(
tokens
):
# DEDENT is a zero length token
if
not
token
.
src
:
continue
key
=
Offset
(
token
.
line
,
token
.
utf8_byte_offset
)
fixes
=
[]
...
...
tests/add_trailing_comma_test.py
Dosyayı görüntüle @
ee808047
...
...
@@ -149,9 +149,13 @@ def test_fixes_calls(src, expected):
'[1, 2, 3, 4]'
,
'{1, 2, 3, 4}'
,
'{1: 2, 3: 4}'
,
# Regression test for #26
'if True:
\n
'
' pass
\n
'
'[x] = {y}'
,
),
)
def
test_noop_
one_line_
literals
(
src
):
def
test_noop_literals
(
src
):
assert
_fix_src
(
src
,
py35_plus
=
False
,
py36_plus
=
False
)
==
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