Message385011
etree's find method supports a limited subset of XPath, https://docs.python.org/3/library/xml.etree.elementtree.html#supported-xpath-syntax . e.find("./*[2]") seems to trigger undefined behavior. The limited XPath syntax for positions is documented as "position predicates must be preceded by a tag name".
lxml behaves the same. Its find() method returns the same value and its xpath() method your expected value:
>>> import lxml.etree
>>> e = lxml.etree.fromstring('<html><div class="row"/><hr/><div/><hr/><div class="row"/><button/></html>')
>>> e.find("./*[2]")
<Element div at 0x7fe4d777b6c0>
>>> e.xpath("./*[2]")
[<Element hr at 0x7fe4d777b2c0>] |
|
Date |
User |
Action |
Args |
2021-01-13 10:32:02 | christian.heimes | set | recipients:
+ christian.heimes, scoder, robpats |
2021-01-13 10:32:02 | christian.heimes | set | messageid: <1610533922.32.0.210779002483.issue42893@roundup.psfhosted.org> |
2021-01-13 10:32:02 | christian.heimes | link | issue42893 messages |
2021-01-13 10:32:01 | christian.heimes | create | |
|