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
3f60f09e
Kaydet (Commit)
3f60f09e
authored
Ara 28, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue10759 - HTMLParser.unescape() to handle malform charrefs.
üst
06fdbedf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
HTMLParser.py
Lib/HTMLParser.py
+10
-7
test_htmlparser.py
Lib/test/test_htmlparser.py
+5
-0
No files found.
Lib/HTMLParser.py
Dosyayı görüntüle @
3f60f09e
...
...
@@ -367,13 +367,16 @@ class HTMLParser(markupbase.ParserBase):
return
s
def
replaceEntities
(
s
):
s
=
s
.
groups
()[
0
]
if
s
[
0
]
==
"#"
:
s
=
s
[
1
:]
if
s
[
0
]
in
[
'x'
,
'X'
]:
c
=
int
(
s
[
1
:],
16
)
else
:
c
=
int
(
s
)
return
unichr
(
c
)
try
:
if
s
[
0
]
==
"#"
:
s
=
s
[
1
:]
if
s
[
0
]
in
[
'x'
,
'X'
]:
c
=
int
(
s
[
1
:],
16
)
else
:
c
=
int
(
s
)
return
unichr
(
c
)
except
ValueError
:
return
'&#'
+
s
+
';'
else
:
# Cannot use name2codepoint directly, because HTMLParser supports apos,
# which is not part of HTML 4
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
3f60f09e
...
...
@@ -320,6 +320,11 @@ DOCTYPE html [
(
"endtag"
,
"p"
),
])
def
test_unescape_function
(
self
):
parser
=
HTMLParser
.
HTMLParser
()
self
.
assertEqual
(
parser
.
unescape
(
'&#bad;'
),
'&#bad;'
)
self
.
assertEqual
(
parser
.
unescape
(
'&'
),
'&'
)
def
test_main
():
test_support
.
run_unittest
(
HTMLParserTestCase
)
...
...
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