1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-13 09:58:22 +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

@ -1,3 +1,8 @@
Mon Aug 1 07:18:53 CEST 2005 Daniel Veillard <daniel@veillard.com>
* python/libxml.c: applied fix from Jakub Piotr Clapa for
xmlAttr.parent(), closing #312181
Sun Jul 31 18:48:55 CEST 2005 Daniel Veillard <daniel@veillard.com>
* schematron.c: report improvement

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: