1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-05 19:01:18 +03:00

applied fix from Jakub Piotr Clapa for xmlAttr.parent(), closing #312181

* python/libxml.c: applied fix from Jakub Piotr Clapa for
  xmlAttr.parent(), closing #312181
Daniel
This commit is contained in:
Daniel Veillard
2005-08-01 05:20:16 +00:00
parent d541c8f8b4
commit 22eda2bc82
2 changed files with 6 additions and 0 deletions

View File

@ -2533,6 +2533,7 @@ libxml_parent(ATTRIBUTE_UNUSED PyObject * self, PyObject * args)
res = attr->parent;
}
break;
case XML_ENTITY_DECL:
case XML_NAMESPACE_DECL:
case XML_XINCLUDE_START: