mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-20 03:52:25 +03:00
don't output any message on failed resolver lookups, better done by the
* python/libxml.c: don't output any message on failed resolver lookups, better done by the python user provided resolver layer. Daniel
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Fri Jul 29 12:11:25 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/libxml.c: don't output any message on failed resolver lookups,
|
||||||
|
better done by the python user provided resolver layer.
|
||||||
|
|
||||||
Fri Jul 29 01:48:02 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
Fri Jul 29 01:48:02 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* HTMLparser.c SAX2.c encoding.c globals.c parser.c relaxng.c
|
* HTMLparser.c SAX2.c encoding.c globals.c parser.c relaxng.c
|
||||||
|
@@ -681,8 +681,12 @@ pythonExternalEntityLoader(const char *URL, const char *ID,
|
|||||||
result = xmlNewIOInputStream(ctxt, buf,
|
result = xmlNewIOInputStream(ctxt, buf,
|
||||||
XML_CHAR_ENCODING_NONE);
|
XML_CHAR_ENCODING_NONE);
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
} else {
|
} else {
|
||||||
printf("pythonExternalEntityLoader: can't read\n");
|
if (URL != NULL)
|
||||||
|
printf("pythonExternalEntityLoader: can't read %s\n",
|
||||||
|
URL);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
if (result == NULL) {
|
if (result == NULL) {
|
||||||
Py_DECREF(ret);
|
Py_DECREF(ret);
|
||||||
|
Reference in New Issue
Block a user