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
f6de9eb2
Kaydet (Commit)
f6de9eb2
authored
Kas 22, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#19688: add back and deprecate the internal HTMLParser.unescape() method.
üst
32f0c7a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
parser.py
Lib/html/parser.py
+7
-0
test_htmlparser.py
Lib/test/test_htmlparser.py
+7
-0
No files found.
Lib/html/parser.py
Dosyayı görüntüle @
f6de9eb2
...
...
@@ -513,3 +513,10 @@ class HTMLParser(_markupbase.ParserBase):
def
unknown_decl
(
self
,
data
):
if
self
.
strict
:
self
.
error
(
"unknown declaration:
%
r"
%
(
data
,))
# Internal -- helper to remove special character quoting
def
unescape
(
self
,
s
):
warnings
.
warn
(
'The unescape method is deprecated and will be removed '
'in 3.5, use html.unescape() instead.'
,
DeprecationWarning
,
stacklevel
=
2
)
return
unescape
(
s
)
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
f6de9eb2
...
...
@@ -569,6 +569,13 @@ class HTMLParserTolerantTestCase(HTMLParserStrictTestCase):
for
html
,
expected
in
data
:
self
.
_run_check
(
html
,
expected
)
def
test_unescape_method
(
self
):
from
html
import
unescape
p
=
self
.
get_collector
()
with
self
.
assertWarns
(
DeprecationWarning
):
s
=
'""""""&#bad;'
self
.
assertEqual
(
p
.
unescape
(
s
),
unescape
(
s
))
def
test_broken_comments
(
self
):
html
=
(
'<! not really a comment >'
'<! not a comment either -->'
...
...
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