mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-29 15:41:13 +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:
@ -1,3 +1,8 @@
|
||||
Tue Jul 8 12:20:11 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* python/libxml_wrap.h: applied patch from #116943 which should
|
||||
fix the xsltSaveResultToFile python binding.
|
||||
|
||||
Mon Jul 7 11:03:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* INSTALL: removed an old reference to libxml2 >= 2.2.12
|
||||
|
@ -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