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
2e3607c1
Kaydet (Commit)
2e3607c1
authored
Nis 07, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#7311: fix html.parser to accept non-ASCII attribute values.
üst
9b5ac3ef
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
parser.py
Lib/html/parser.py
+1
-1
test_htmlparser.py
Lib/test/test_htmlparser.py
+17
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/html/parser.py
Dosyayı görüntüle @
2e3607c1
...
...
@@ -28,7 +28,7 @@ tagfind = re.compile('[a-zA-Z][-.a-zA-Z0-9:_]*')
# make it correctly strict without breaking backward compatibility.
attrfind
=
re
.
compile
(
r'\s*([a-zA-Z_][-.:a-zA-Z_0-9]*)(\s*=\s*'
r'(\'[^\']*\'|"[^"]*"|[
-a-zA-Z0-9./,:;+*
%
?!&$\(\)_#=~@
]*))?'
)
r'(\'[^\']*\'|"[^"]*"|[
^\s"\'=<>`
]*))?'
)
attrfind_tolerant
=
re
.
compile
(
r'\s*([a-zA-Z_][-.:a-zA-Z_0-9]*)(\s*=\s*'
r'(\'[^\']*\'|"[^"]*"|[^>\s]*))?'
)
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
2e3607c1
...
...
@@ -217,6 +217,23 @@ DOCTYPE html [
(
"starttag"
,
"a"
,
[(
"href"
,
"mailto:xyz@example.com"
)]),
])
def
test_attr_nonascii
(
self
):
# see issue 7311
self
.
_run_check
(
"<img src=/foo/bar.png alt=
\u4e2d\u6587
>"
,
[
(
"starttag"
,
"img"
,
[(
"src"
,
"/foo/bar.png"
),
(
"alt"
,
"
\u4e2d\u6587
"
)]),
])
self
.
_run_check
(
"<a title='
\u30c6\u30b9\u30c8
' "
"href='
\u30c6\u30b9\u30c8
.html'>"
,
[
(
"starttag"
,
"a"
,
[(
"title"
,
"
\u30c6\u30b9\u30c8
"
),
(
"href"
,
"
\u30c6\u30b9\u30c8
.html"
)]),
])
self
.
_run_check
(
'<a title="
\u30c6\u30b9\u30c8
" '
'href="
\u30c6\u30b9\u30c8
.html">'
,
[
(
"starttag"
,
"a"
,
[(
"title"
,
"
\u30c6\u30b9\u30c8
"
),
(
"href"
,
"
\u30c6\u30b9\u30c8
.html"
)]),
])
def
test_attr_entity_replacement
(
self
):
self
.
_run_check
(
"""<a b='&><"''>"""
,
[
(
"starttag"
,
"a"
,
[(
"b"
,
"&><
\"
'"
)]),
...
...
Misc/NEWS
Dosyayı görüntüle @
2e3607c1
...
...
@@ -49,6 +49,8 @@ Core and Builtins
Library
-------
-
Issue
#
7311
:
fix
html
.
parser
to
accept
non
-
ASCII
attribute
values
.
-
Issue
#
11605
:
email
.
parser
.
BytesFeedParser
was
incorrectly
converting
multipart
subpararts
with
an
8
bit
CTE
into
unicode
instead
of
preserving
the
bytes
.
...
...
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