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
e31ddedb
Kaydet (Commit)
e31ddedb
authored
Şub 13, 2012
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix an index and clean up comments.
üst
7f728c1e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
parser.py
Lib/html/parser.py
+2
-1
test_htmlparser.py
Lib/test/test_htmlparser.py
+0
-1
No files found.
Lib/html/parser.py
Dosyayı görüntüle @
e31ddedb
...
...
@@ -270,12 +270,13 @@ class HTMLParser(_markupbase.ParserBase):
if
rawdata
[
i
:
i
+
2
]
!=
'<!'
:
self
.
error
(
'unexpected call to parse_html_declaration()'
)
if
rawdata
[
i
:
i
+
4
]
==
'<!--'
:
# this case is actually already handled in goahead()
return
self
.
parse_comment
(
i
)
elif
rawdata
[
i
:
i
+
3
]
==
'<!['
:
return
self
.
parse_marked_section
(
i
)
elif
rawdata
[
i
:
i
+
9
]
.
lower
()
==
'<!doctype'
:
# find the closing >
gtpos
=
rawdata
.
find
(
'>'
,
9
)
gtpos
=
rawdata
.
find
(
'>'
,
i
+
9
)
if
gtpos
==
-
1
:
return
-
1
self
.
handle_decl
(
rawdata
[
i
+
2
:
gtpos
])
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
e31ddedb
...
...
@@ -393,7 +393,6 @@ class HTMLParserTolerantTestCase(HTMLParserStrictTestCase):
self
.
_run_check
(
"<!DOCTYPE foo $ >"
,
[(
'decl'
,
'DOCTYPE foo $ '
)])
def
test_illegal_declarations
(
self
):
# XXX this might be wrong
self
.
_run_check
(
'<!spacer type="block" height="25">'
,
[(
'comment'
,
'spacer type="block" height="25"'
)])
...
...
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