Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
97df7f86
Kaydet (Commit)
97df7f86
authored
Mar 26, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add -q option that *just* prints the filename.
üst
70c7f48b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
tabpolice.py
Tools/scripts/tabpolice.py
+13
-7
No files found.
Tools/scripts/tabpolice.py
Dosyayı görüntüle @
97df7f86
...
...
@@ -5,20 +5,24 @@
import
os
import
sys
import
getopt
import
string
import
tokenize
verbose
=
0
quiet
=
0
def
main
():
global
verbose
global
verbose
,
quiet
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"v"
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"
q
v"
)
except
getopt
.
error
,
msg
:
print
msg
for
o
,
a
in
opts
:
if
o
==
'-v'
:
verbose
=
verbose
+
1
quiet
=
0
if
o
==
'-q'
:
quiet
=
1
verbose
=
0
for
arg
in
args
:
check
(
arg
)
...
...
@@ -61,7 +65,12 @@ def check(file):
print
"
%
s: Token Error:
%
s"
%
(
`file`
,
str
(
msg
))
f
.
close
()
if
tokens
!=
alttokens
:
if
tokens
==
alttokens
:
if
verbose
:
print
"
%
s: Clean bill of health."
%
`file`
elif
quiet
:
print
file
else
:
badline
=
0
n
,
altn
=
len
(
tokens
),
len
(
alttokens
)
for
i
in
range
(
max
(
n
,
altn
)):
...
...
@@ -86,9 +95,6 @@ def check(file):
print
"offending line:"
,
`line`
else
:
print
file
,
badline
,
`line`
else
:
if
verbose
:
print
"
%
s: Clean bill of health."
%
`file`
if
__name__
==
'__main__'
:
main
()
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