Skip to content

Commit

Permalink
bpo-34941: Fix searching Element subclasses. (pythonGH-9766)
Browse files Browse the repository at this point in the history
Methods find(), findtext() and findall() of xml.etree.ElementTree.Element
were not able to find chldren which are instances of Element subclasses.
  • Loading branch information
serhiy-storchaka committed Oct 14, 2018
1 parent d274afb commit b11c566
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 12 deletions.
15 changes: 15 additions & 0 deletions Lib/test/test_xml_etree.py
Expand Up @@ -2160,6 +2160,21 @@ def newmethod(self):
mye = MyElement('joe')
self.assertEqual(mye.newmethod(), 'joe')

def test_Element_subclass_find(self):
class MyElement(ET.Element):
pass

e = ET.Element('foo')
e.text = 'text'
sub = MyElement('bar')
sub.text = 'subtext'
e.append(sub)
self.assertEqual(e.findtext('bar'), 'subtext')
self.assertEqual(e.find('bar').tag, 'bar')
found = list(e.findall('bar'))
self.assertEqual(len(found), 1, found)
self.assertEqual(found[0].tag, 'bar')


class ElementFindTest(unittest.TestCase):
def test_find_simple(self):
Expand Down
@@ -0,0 +1,3 @@
Methods ``find()``, ``findtext()`` and ``findall()`` of the ``Element``
class in the :mod:`xml.etree.ElementTree` module are now able to find
children which are instances of ``Element`` subclasses.
25 changes: 13 additions & 12 deletions Modules/_elementtree.c
Expand Up @@ -204,6 +204,8 @@ typedef struct {


#define Element_CheckExact(op) (Py_TYPE(op) == &Element_Type)
#define Element_Check(op) PyObject_TypeCheck(op, &Element_Type)


/* -------------------------------------------------------------------- */
/* Element constructors and destructor */
Expand Down Expand Up @@ -1132,7 +1134,7 @@ _elementtree_Element_extend(ElementObject *self, PyObject *elements)
for (i = 0; i < PySequence_Fast_GET_SIZE(seq); i++) {
PyObject* element = PySequence_Fast_GET_ITEM(seq, i);
Py_INCREF(element);
if (!PyObject_TypeCheck(element, (PyTypeObject *)&Element_Type)) {
if (!Element_Check(element)) {
PyErr_Format(
PyExc_TypeError,
"expected an Element, not \"%.200s\"",
Expand Down Expand Up @@ -1184,7 +1186,7 @@ _elementtree_Element_find_impl(ElementObject *self, PyObject *path,
for (i = 0; i < self->extra->length; i++) {
PyObject* item = self->extra->children[i];
int rc;
if (!Element_CheckExact(item))
if (!Element_Check(item))
continue;
Py_INCREF(item);
rc = PyObject_RichCompareBool(((ElementObject*)item)->tag, path, Py_EQ);
Expand Down Expand Up @@ -1229,14 +1231,14 @@ _elementtree_Element_findtext_impl(ElementObject *self, PyObject *path,
}

for (i = 0; i < self->extra->length; i++) {
ElementObject* item = (ElementObject*) self->extra->children[i];
PyObject *item = self->extra->children[i];
int rc;
if (!Element_CheckExact(item))
if (!Element_Check(item))
continue;
Py_INCREF(item);
rc = PyObject_RichCompareBool(item->tag, path, Py_EQ);
rc = PyObject_RichCompareBool(((ElementObject*)item)->tag, path, Py_EQ);
if (rc > 0) {
PyObject* text = element_get_text(item);
PyObject* text = element_get_text((ElementObject*)item);
if (text == Py_None) {
Py_DECREF(item);
return PyUnicode_New(0, 0);
Expand Down Expand Up @@ -1269,13 +1271,12 @@ _elementtree_Element_findall_impl(ElementObject *self, PyObject *path,
{
Py_ssize_t i;
PyObject* out;
PyObject* tag = path;
elementtreestate *st = ET_STATE_GLOBAL;

if (checkpath(tag) || namespaces != Py_None) {
if (checkpath(path) || namespaces != Py_None) {
_Py_IDENTIFIER(findall);
return _PyObject_CallMethodIdObjArgs(
st->elementpath_obj, &PyId_findall, self, tag, namespaces, NULL
st->elementpath_obj, &PyId_findall, self, path, namespaces, NULL
);
}

Expand All @@ -1289,10 +1290,10 @@ _elementtree_Element_findall_impl(ElementObject *self, PyObject *path,
for (i = 0; i < self->extra->length; i++) {
PyObject* item = self->extra->children[i];
int rc;
if (!Element_CheckExact(item))
if (!Element_Check(item))
continue;
Py_INCREF(item);
rc = PyObject_RichCompareBool(((ElementObject*)item)->tag, tag, Py_EQ);
rc = PyObject_RichCompareBool(((ElementObject*)item)->tag, path, Py_EQ);
if (rc != 0 && (rc < 0 || PyList_Append(out, item) < 0)) {
Py_DECREF(item);
Py_DECREF(out);
Expand Down Expand Up @@ -2173,7 +2174,7 @@ elementiter_next(ElementIterObject *it)
continue;
}

if (!PyObject_TypeCheck(extra->children[child_index], &Element_Type)) {
if (!Element_Check(extra->children[child_index])) {
PyErr_Format(PyExc_AttributeError,
"'%.100s' object has no attribute 'iter'",
Py_TYPE(extra->children[child_index])->tp_name);
Expand Down

0 comments on commit b11c566

Please sign in to comment.