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
ec30b3dd
Kaydet (Commit)
ec30b3dd
authored
Kas 09, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue10205 - XML QName error when different tags have same QName.
üst
92665ab8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
test_xml_etree.py
Lib/test/test_xml_etree.py
+5
-0
ElementTree.py
Lib/xml/etree/ElementTree.py
+3
-2
No files found.
Lib/test/test_xml_etree.py
Dosyayı görüntüle @
ec30b3dd
...
...
@@ -1119,6 +1119,11 @@ def qname():
>>> elem = ET.Element(ET.QName("uri", "tag"))
>>> serialize(elem) # 1.3
'<ns0:tag xmlns:ns0="uri" />'
>>> elem = ET.Element(ET.QName("uri", "tag"))
>>> subelem = ET.SubElement(elem, ET.QName("uri", "tag1"))
>>> subelem = ET.SubElement(elem, ET.QName("uri", "tag2"))
>>> serialize(elem) # 1.4
'<ns0:tag xmlns:ns0="uri"><ns0:tag1 /><ns0:tag2 /></ns0:tag>'
2) decorated attributes
...
...
Lib/xml/etree/ElementTree.py
Dosyayı görüntüle @
ec30b3dd
...
...
@@ -913,8 +913,9 @@ def _namespaces(elem, default_namespace=None):
iterate
=
elem
.
getiterator
# cET compatibility
for
elem
in
iterate
():
tag
=
elem
.
tag
if
isinstance
(
tag
,
QName
)
and
tag
.
text
not
in
qnames
:
add_qname
(
tag
.
text
)
if
isinstance
(
tag
,
QName
):
if
tag
.
text
not
in
qnames
:
add_qname
(
tag
.
text
)
elif
isinstance
(
tag
,
str
):
if
tag
not
in
qnames
:
add_qname
(
tag
)
...
...
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