mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
use stderr and not stdout for default errors in python environment bug
* python/libxml.c: use stderr and not stdout for default errors in python environment bug #122552 Daniel
This commit is contained in:
parent
8d8bf2c5f6
commit
007d51eb73
@ -1,3 +1,8 @@
|
|||||||
|
Wed Sep 17 22:06:11 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/libxml.c: use stderr and not stdout for default errors
|
||||||
|
in python environment bug #122552
|
||||||
|
|
||||||
Wed Sep 17 21:33:57 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
Wed Sep 17 21:33:57 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* parserInternals.c: small fix from Rob Richards for input filename
|
* parserInternals.c: small fix from Rob Richards for input filename
|
||||||
|
@ -447,7 +447,7 @@ pythonExternalEntityLoader(const char *URL, const char *ID,
|
|||||||
Py_XDECREF(ctxtobj);
|
Py_XDECREF(ctxtobj);
|
||||||
#ifdef DEBUG_LOADER
|
#ifdef DEBUG_LOADER
|
||||||
printf("pythonExternalEntityLoader: result ");
|
printf("pythonExternalEntityLoader: result ");
|
||||||
PyObject_Print(ret, stdout, 0);
|
PyObject_Print(ret, stderr, 0);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -1244,7 +1244,7 @@ libxml_xmlErrorFuncHandler(ATTRIBUTE_UNUSED void *ctx, const char *msg,
|
|||||||
|
|
||||||
if (libxml_xmlPythonErrorFuncHandler == NULL) {
|
if (libxml_xmlPythonErrorFuncHandler == NULL) {
|
||||||
va_start(ap, msg);
|
va_start(ap, msg);
|
||||||
vfprintf(stdout, msg, ap);
|
vfprintf(stderr, msg, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
} else {
|
} else {
|
||||||
va_start(ap, msg);
|
va_start(ap, msg);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user