mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Merged revisions 86348 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86348 | senthil.kumaran | 2010-11-09 10:36:59 +0800 (Tue, 09 Nov 2010) | 3 lines Fix Issue10205 - XML QName error when different tags have same QName. ........
This commit is contained in:
parent
d67b6786ba
commit
80860381a5
2 changed files with 8 additions and 2 deletions
|
@ -1101,6 +1101,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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue