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
6f73c1a2
Kaydet (Commit)
6f73c1a2
authored
Mar 20, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
The Tab Police watches for possibly inconsistent indentation.
üst
78fc3634
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
tabpolice.py
Tools/scripts/tabpolice.py
+74
-0
No files found.
Tools/scripts/tabpolice.py
0 → 100755
Dosyayı görüntüle @
6f73c1a2
#! /usr/bin/env python
"""The Tab Police watches for possibly inconsistent indentation."""
import
os
import
sys
import
getopt
import
string
import
tokenize
verbose
=
0
def
main
():
global
verbose
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"v"
)
except
getopt
.
error
,
msg
:
print
msg
for
o
,
a
in
opts
:
if
o
==
'-v'
:
verbose
=
verbose
+
1
for
arg
in
args
:
check
(
arg
)
def
check
(
file
):
if
os
.
path
.
isdir
(
file
)
and
not
os
.
path
.
islink
(
file
):
if
verbose
:
print
"
%
s: listing directory"
%
`file`
names
=
os
.
listdir
(
file
)
for
name
in
names
:
fullname
=
os
.
path
.
join
(
file
,
name
)
if
(
os
.
path
.
isdir
(
fullname
)
and
not
os
.
path
.
islink
(
fullname
)
or
os
.
path
.
normcase
(
name
[
-
3
:])
==
".py"
):
check
(
fullname
)
return
try
:
f
=
open
(
file
)
except
IOError
,
msg
:
print
"
%
s: I/O Error:
%
s"
%
(
`file`
,
str
(
msg
))
return
if
verbose
>
1
:
print
"checking"
,
`file`
,
"with tabsize 8..."
tokens
=
[]
tokenize
.
tabsize
=
8
try
:
tokenize
.
tokenize
(
f
.
readline
,
tokens
.
append
)
except
tokenize
.
TokenError
,
msg
:
print
"
%
s: Token Error:
%
s"
%
(
`file`
,
str
(
msg
))
if
verbose
>
1
:
print
"checking"
,
`file`
,
"with tabsize 4..."
f
.
seek
(
0
)
alttokens
=
[]
tokenize
.
tabsize
=
4
try
:
tokenize
.
tokenize
(
f
.
readline
,
alttokens
.
append
)
except
tokenize
.
TokenError
,
msg
:
print
"
%
s: Token Error:
%
s"
%
(
`file`
,
str
(
msg
))
f
.
close
()
if
tokens
!=
alttokens
:
if
verbose
:
print
"
%
s: *** Trouble in tab city! ***"
%
`file`
else
:
print
file
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