1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-06-13 19:21:37 +03:00

more work on the python bindings generator. Daniel

* python/generator.py python/libxml.c python/libxml.py:
  more work on the python bindings generator.
Daniel
This commit is contained in:
Daniel Veillard
2002-01-30 23:49:06 +00:00
parent 96fe095d4b
commit 36ed5290a2
4 changed files with 253 additions and 23 deletions

View File

@ -47,6 +47,7 @@ libxml_charPtrWrap(const char *str) {
}
/* TODO: look at deallocation */
ret = PyString_FromString(str);
xmlFree(str);
return(ret);
}