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
ba8a9860
Kaydet (Commit)
ba8a9860
authored
Agu 08, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix xml.etree.ElementInclude to include the tail of the current node. Issue #6231
üst
14bd1c3b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
test_xml_etree.py
Lib/test/test_xml_etree.py
+18
-0
ElementInclude.py
Lib/xml/etree/ElementInclude.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_xml_etree.py
Dosyayı görüntüle @
ba8a9860
...
...
@@ -1277,6 +1277,14 @@ XINCLUDE["C2.xml"] = """\
XINCLUDE
[
"count.txt"
]
=
"324387"
XINCLUDE
[
"C2b.xml"
]
=
"""
\
<?xml version='1.0'?>
<document xmlns:xi="http://www.w3.org/2001/XInclude">
<p>This document has been <em>accessed</em>
<xi:include href="count.txt" parse="text"/> times.</p>
</document>
"""
XINCLUDE
[
"C3.xml"
]
=
"""
\
<?xml version='1.0'?>
<document xmlns:xi="http://www.w3.org/2001/XInclude">
...
...
@@ -1352,6 +1360,16 @@ def xinclude():
324387 times.</p>
</document>
Textual inclusion after sibling element (based on modified XInclude C.2)
>>> document = xinclude_loader("C2b.xml")
>>> ElementInclude.include(document, xinclude_loader)
>>> print(serialize(document)) # C2b
<document>
<p>This document has been <em>accessed</em>
324387 times.</p>
</document>
Textual inclusion of XML example (XInclude C.3)
>>> document = xinclude_loader("C3.xml")
...
...
Lib/xml/etree/ElementInclude.py
Dosyayı görüntüle @
ba8a9860
...
...
@@ -125,7 +125,7 @@ def include(elem, loader=None):
)
if
i
:
node
=
elem
[
i
-
1
]
node
.
tail
=
(
node
.
tail
or
""
)
+
text
node
.
tail
=
(
node
.
tail
or
""
)
+
text
+
(
e
.
tail
or
""
)
else
:
elem
.
text
=
(
elem
.
text
or
""
)
+
text
+
(
e
.
tail
or
""
)
del
elem
[
i
]
...
...
Misc/NEWS
Dosyayı görüntüle @
ba8a9860
...
...
@@ -63,6 +63,9 @@ Extensions
Library
-------
- Issue #6231: Fix xml.etree.ElementInclude to include the tail of the
current node.
- Issue #8047: Fix the xml.etree serializer to return bytes by default. Use
``encoding="unicode"`` to generate a Unicode string.
...
...
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