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
d5d4406c
Kaydet (Commit)
d5d4406c
authored
Kas 14, 2011
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#1745761, #755670, #13357, #12629, #1200313: merge with 3.2.
üst
84b48a6c
c2fe5776
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
parser.py
Lib/html/parser.py
+10
-9
test_htmlparser.py
Lib/test/test_htmlparser.py
+0
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/html/parser.py
Dosyayı görüntüle @
d5d4406c
...
...
@@ -30,8 +30,8 @@ attrfind = re.compile(
r'\s*([a-zA-Z_][-.:a-zA-Z_0-9]*)(\s*=\s*'
r'(\'[^\']*\'|"[^"]*"|[^\s"\'=<>`]*))?'
)
attrfind_tolerant
=
re
.
compile
(
r'
,?\s*([a-zA-Z_][-.:a-zA-Z_0-9]*)(\s*=
\s*'
r'(\'[^\']*\'|"[^"]*"|[^>\s]*))?'
)
r'
\s*((?<=[\'"\s])[^\s/>][^\s/=>]*)(\s*=+
\s*'
r'(\'[^\']*\'|"[^"]*"|
(?![\'"])
[^>\s]*))?'
)
locatestarttagend
=
re
.
compile
(
r"""
<[a-zA-Z][-.a-zA-Z0-9:_]* # tag name
(?:\s+ # whitespace before attribute name
...
...
@@ -49,16 +49,16 @@ locatestarttagend = re.compile(r"""
locatestarttagend_tolerant
=
re
.
compile
(
r"""
<[a-zA-Z][-.a-zA-Z0-9:_]* # tag name
(?:\s* # optional whitespace before attribute name
(?:
[a-zA-Z_][-.:a-zA-Z0-9_]*
# attribute name
(?:\s*=
\s*
# value indicator
(?:
(?<=['"\s])[^\s/>][^\s/=>]*
# attribute name
(?:\s*=
+\s*
# value indicator
(?:'[^']*' # LITA-enclosed value
|
\"[^\"]*\"
# LIT-enclosed value
|
[^'\">\s]+
# bare value
|
"[^"]*"
# LIT-enclosed value
|
(?!['"])[^>\s]*
# bare value
)
(?:\s*,)* # possibly followed by a comma
)?
)
)
*
)?
\s*
)
*
)
?
\s* # trailing whitespace
"""
,
re
.
VERBOSE
)
endendtag
=
re
.
compile
(
'>'
)
...
...
@@ -295,6 +295,7 @@ class HTMLParser(_markupbase.ParserBase):
elif
attrvalue
[:
1
]
==
'
\'
'
==
attrvalue
[
-
1
:]
or
\
attrvalue
[:
1
]
==
'"'
==
attrvalue
[
-
1
:]:
attrvalue
=
attrvalue
[
1
:
-
1
]
if
attrvalue
:
attrvalue
=
self
.
unescape
(
attrvalue
)
attrs
.
append
((
attrname
.
lower
(),
attrvalue
))
k
=
m
.
end
()
...
...
Lib/test/test_htmlparser.py
Dosyayı görüntüle @
d5d4406c
This diff is collapsed.
Click to expand it.
Misc/NEWS
Dosyayı görüntüle @
d5d4406c
...
...
@@ -365,6 +365,9 @@ Core and Builtins
Library
-------
-
Issues
#
1745761
,
#
755670
,
#
13357
,
#
12629
,
#
1200313
:
HTMLParser
now
correctly
handles
non
-
valid
attributes
,
including
adjacent
and
unquoted
attributes
.
-
Issue
#
13193
:
Fix
distutils
.
filelist
.
FileList
and
packaging
.
manifest
.
Manifest
under
Windows
.
The
"recursive-include"
directive
now
recognizes
both
legal
path
separators
.
...
...
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