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:
@ -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);
|
||||
|
Reference in New Issue
Block a user