1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-01 13:41:39 +03:00

applied patch from #116943 which should fix the xsltSaveResultToFile

* python/libxml_wrap.h: applied patch from #116943 which should
  fix the xsltSaveResultToFile python binding.
Daniel
This commit is contained in:
Daniel Veillard
2003-07-08 10:21:31 +00:00
parent 6fcb263d48
commit 0232312dde
2 changed files with 6 additions and 1 deletions

View File

@ -56,7 +56,7 @@ typedef struct {
} Pycatalog_Object;
#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
(PyFile_Check(v) ? NULL : (PyFile_AsFile(v))))
(PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout))
PyObject * libxml_intWrap(int val);
PyObject * libxml_longWrap(long val);