mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-18 16:08:59 +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:
@@ -681,8 +681,12 @@ pythonExternalEntityLoader(const char *URL, const char *ID,
|
||||
result = xmlNewIOInputStream(ctxt, buf,
|
||||
XML_CHAR_ENCODING_NONE);
|
||||
}
|
||||
#if 0
|
||||
} else {
|
||||
printf("pythonExternalEntityLoader: can't read\n");
|
||||
if (URL != NULL)
|
||||
printf("pythonExternalEntityLoader: can't read %s\n",
|
||||
URL);
|
||||
#endif
|
||||
}
|
||||
if (result == NULL) {
|
||||
Py_DECREF(ret);
|
||||
|
Reference in New Issue
Block a user