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:
Daniel Veillard 2005-07-29 10:12:45 +00:00
parent 24505b0f5c
commit 4ea89f04cc
2 changed files with 10 additions and 1 deletions

View File

@ -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>
* HTMLparser.c SAX2.c encoding.c globals.c parser.c relaxng.c

View File

@ -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);