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
3b62c2ff
Kaydet (Commit)
3b62c2ff
authored
Ock 03, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Disable the line length checker by default.
üst
7044b118
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
Makefile
Doc/Makefile
+1
-1
rstlint.py
Doc/tools/rstlint.py
+7
-2
No files found.
Doc/Makefile
Dosyayı görüntüle @
3b62c2ff
...
...
@@ -142,4 +142,4 @@ dist:
cp
build/latex/docs-pdf.tar.bz2
dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
check
:
$(PYTHON)
tools/rstlint.py
-i
tools
-s
2
$(PYTHON)
tools/rstlint.py
-i
tools
Doc/tools/rstlint.py
Dosyayı görüntüle @
3b62c2ff
...
...
@@ -91,7 +91,6 @@ def check_suspicious_constructs(fn, lines):
@checker
(
'.py'
,
'.rst'
)
def
check_whitespace
(
fn
,
lines
):
"""Check for whitespace and line length issues."""
lasti
=
0
for
lno
,
line
in
enumerate
(
lines
):
if
'
\r
'
in
line
:
yield
lno
+
1
,
'
\\
r in line'
...
...
@@ -99,7 +98,13 @@ def check_whitespace(fn, lines):
yield
lno
+
1
,
'OMG TABS!!!1'
if
line
[:
-
1
]
.
rstrip
(
'
\t
'
)
!=
line
[:
-
1
]:
yield
lno
+
1
,
'trailing whitespace'
if
len
(
line
)
>
86
:
@checker
(
'.rst'
,
severity
=
0
)
def
check_line_length
(
fn
,
lines
):
"""Check for line length; this checker is not run by default."""
for
lno
,
line
in
enumerate
(
lines
):
if
len
(
line
)
>
81
:
# don't complain about tables, links and function signatures
if
line
.
lstrip
()[
0
]
not
in
'+|'
and
\
'http://'
not
in
line
and
\
...
...
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