This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients py.user
Date 2016-09-21.12:38:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474461492.99.0.941056742104.issue28238@psf.upfronthosting.co.za>
In-reply-to
Content
In the example there are two namespaces in one document, but it is impossible to search all elements only in one namespace:

>>> import xml.etree.ElementTree as etree
>>>
>>> s = '<feed xmlns="http://def" xmlns:x="http://x"><a/><x:b/></feed>'
>>>
>>> root = etree.fromstring(s)
>>>
>>> root.findall('*')
[<Element '{http://def}a' at 0xb73961bc>, <Element '{http://x}b' at 0xb7396c34>]
>>>
>>> root.findall('{http://def}*')
[]
>>>


And same try with site package lxml works fine:

>>> import lxml.etree as etree
>>>
>>> s = '<feed xmlns="http://def" xmlns:x="http://x"><a/><x:b/></feed>'
>>>
>>> root = etree.fromstring(s)
>>>
>>> root.findall('*')
[<Element {http://def}a at 0xb70ab11c>, <Element {http://x}b at 0xb70ab144>]
>>>
>>> root.findall('{http://def}*')
[<Element {http://def}a at 0xb70ab11c>]
>>>
History
Date User Action Args
2016-09-21 12:38:13py.usersetrecipients: + py.user
2016-09-21 12:38:12py.usersetmessageid: <1474461492.99.0.941056742104.issue28238@psf.upfronthosting.co.za>
2016-09-21 12:38:12py.userlinkissue28238 messages
2016-09-21 12:38:12py.usercreate