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
ee171a26
Unverified
Kaydet (Commit)
ee171a26
authored
Eki 15, 2018
tarafından
Pablo Galindo
Kaydeden (comit)
GitHub
Eki 15, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Stop using deprecated logging API in Sphinx suspicious checker (GH-9875)
üst
6bdb6f76
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
suspicious.py
Doc/tools/extensions/suspicious.py
+6
-4
No files found.
Doc/tools/extensions/suspicious.py
Dosyayı görüntüle @
ee171a26
...
...
@@ -48,6 +48,7 @@ import sys
from
docutils
import
nodes
from
sphinx.builders
import
Builder
import
sphinx.util
detect_all
=
re
.
compile
(
r'''
::(?=[^=])| # two :: (but NOT ::=)
...
...
@@ -85,6 +86,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
Checks for possibly invalid markup that may leak into the output.
"""
name
=
'suspicious'
logger
=
sphinx
.
util
.
logging
.
getLogger
(
"CheckSuspiciousMarkupBuilder"
)
def
init
(
self
):
# create output file
...
...
@@ -116,7 +118,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
self
.
warn
(
'Found
%
s/
%
s unused rules:'
%
(
len
(
unused_rules
),
len
(
self
.
rules
)))
for
rule
in
unused_rules
:
self
.
info
(
repr
(
rule
))
self
.
logger
.
info
(
repr
(
rule
))
return
def
check_issue
(
self
,
line
,
lineno
,
issue
):
...
...
@@ -146,7 +148,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
return
False
def
report_issue
(
self
,
text
,
lineno
,
issue
):
if
not
self
.
any_issue
:
self
.
info
()
if
not
self
.
any_issue
:
self
.
logger
.
info
()
self
.
any_issue
=
True
self
.
write_log_entry
(
lineno
,
issue
,
text
)
if
py3
:
...
...
@@ -181,7 +183,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
A csv file, with exactly the same format as suspicious.csv
Fields: document name (normalized), line number, issue, surrounding text
"""
self
.
info
(
"loading ignore rules... "
,
nonl
=
1
)
self
.
logger
.
info
(
"loading ignore rules... "
,
nonl
=
1
)
self
.
rules
=
rules
=
[]
try
:
if
py3
:
...
...
@@ -206,7 +208,7 @@ class CheckSuspiciousMarkupBuilder(Builder):
rule
=
Rule
(
docname
,
lineno
,
issue
,
text
)
rules
.
append
(
rule
)
f
.
close
()
self
.
info
(
'done,
%
d rules loaded'
%
len
(
self
.
rules
))
self
.
logger
.
info
(
'done,
%
d rules loaded'
%
len
(
self
.
rules
))
def
get_lineno
(
node
):
...
...
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