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
b9cd72a9
Kaydet (Commit)
b9cd72a9
authored
Eki 15, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml().
üst
d4460aaa
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
test_minidom.py
Lib/test/test_minidom.py
+7
-0
minidom.py
Lib/xml/dom/minidom.py
+3
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_minidom.py
Dosyayı görüntüle @
b9cd72a9
...
...
@@ -1489,6 +1489,13 @@ class MinidomTest(unittest.TestCase):
doc
.
appendChild
(
doc
.
createComment
(
"foo--bar"
))
self
.
assertRaises
(
ValueError
,
doc
.
toxml
)
def
testEmptyXMLNSValue
(
self
):
doc
=
parseString
(
"<element xmlns=''>
\n
"
"<foo/>
\n
</element>"
)
doc2
=
parseString
(
doc
.
toxml
())
self
.
confirm
(
doc2
.
namespaceURI
==
xml
.
dom
.
EMPTY_NAMESPACE
)
def
test_main
():
run_unittest
(
MinidomTest
)
...
...
Lib/xml/dom/minidom.py
Dosyayı görüntüle @
b9cd72a9
...
...
@@ -301,8 +301,9 @@ def _in_document(node):
def
_write_data
(
writer
,
data
):
"Writes datachars to writer."
data
=
data
.
replace
(
"&"
,
"&"
)
.
replace
(
"<"
,
"<"
)
data
=
data
.
replace
(
"
\"
"
,
"""
)
.
replace
(
">"
,
">"
)
if
data
:
data
=
data
.
replace
(
"&"
,
"&"
)
.
replace
(
"<"
,
"<"
)
.
\
replace
(
"
\"
"
,
"""
)
.
replace
(
">"
,
">"
)
writer
.
write
(
data
)
def
_get_elements_by_tagName_helper
(
parent
,
name
,
rc
):
...
...
Misc/NEWS
Dosyayı görüntüle @
b9cd72a9
...
...
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
- Issue #5762: Fix AttributeError raised by ``xml.dom.minidom`` when an empty
XML namespace attribute is encountered.
- Issue #2830: Add the ``html.escape()`` function, which quotes all problematic
characters by default. Deprecate ``cgi.escape()``.
...
...
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