1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-28 04:41:59 +03:00

fixed the parameter order when calling Python based extensions. Daniel

* python/libxslt.c: fixed the parameter order when calling
  Python based extensions.
Daniel
This commit is contained in:
Daniel Veillard
2002-08-21 17:00:38 +00:00
parent f2914bee43
commit 4c95dfde98
2 changed files with 6 additions and 1 deletions

View File

@ -107,7 +107,7 @@ libxslt_xmlXPathFuncCallback(xmlXPathParserContextPtr ctxt, int nargs) {
list = PyTuple_New(nargs + 1);
PyTuple_SetItem(list, 0, libxml_xmlXPathParserContextPtrWrap(ctxt));
for (i = 0;i < nargs;i++) {
for (i = nargs - 1;i >= 0;i--) {
obj = valuePop(ctxt);
cur = libxml_xmlXPathObjectPtrWrap(obj);
PyTuple_SetItem(list, i + 1, cur);