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
d09def36
Kaydet (Commit)
d09def36
authored
Mar 09, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1442874: handle "<!>", the empty SGML comment
üst
8f4b4db6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
markupbase.py
Lib/markupbase.py
+4
-1
test_htmlparser.py
Lib/test/test_htmlparser.py
+1
-1
No files found.
Lib/markupbase.py
Dosyayı görüntüle @
d09def36
...
...
@@ -76,13 +76,16 @@ class ParserBase:
rawdata
=
self
.
rawdata
j
=
i
+
2
assert
rawdata
[
i
:
j
]
==
"<!"
,
"unexpected call to parse_declaration"
if
rawdata
[
j
:
j
+
1
]
==
">"
:
# the empty comment <!>
return
j
+
1
if
rawdata
[
j
:
j
+
1
]
in
(
"-"
,
""
):
# Start of comment followed by buffer boundary,
# or just a buffer boundary.
return
-
1
# A simple, practical version could look like: ((name|stringlit) S*) + '>'
n
=
len
(
rawdata
)
if
rawdata
[
j
:
j
+
1
]
==
'--'
:
#comment
if
rawdata
[
j
:
j
+
2
]
==
'--'
:
#comment
# Locate --.*-- as the body of the comment
return
self
.
parse_comment
(
i
)
elif
rawdata
[
j
]
==
'['
:
#marked section
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
d09def36
...
...
@@ -115,7 +115,7 @@ comment1b-->
<Img sRc='Bar' isMAP>sample
text
“
<!--comment2a-- --comment2b-->
<!--comment2a-- --comment2b-->
<!>
</Html>
"""
,
[
(
"data"
,
"
\n
"
),
...
...
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