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

more work, now able to extend the XPath interpreter with functions written

* python/Makefile.am python/generator.py python/libxml.c
  python/libxml.py: more work, now able to extend the
  XPath interpreter with functions written in python.
Daniel
This commit is contained in:
Daniel Veillard
2002-02-01 17:56:45 +00:00
parent c3e39448e5
commit a7340c830e
5 changed files with 186 additions and 2 deletions

View File

@ -141,6 +141,12 @@ def xpathObjectRet(o):
return ret
return o
#
# register an XPath function
#
def registerXPathFunction(ctxt, name, ns_uri, f):
ret = _libxml.registerXPathFunction(ctxt, name, ns_uri, f)
#
# Everything below this point is automatically generated
#