Kaydet (Commit) cc0cd71d authored tarafından Fred Drake's avatar Fred Drake

fix XMLFilterBase.resolveEntity() so the caller gets the result

(PyXML bug #1112052)
üst 9ee3fb38
...@@ -232,7 +232,7 @@ class XMLFilterBase(xmlreader.XMLReader): ...@@ -232,7 +232,7 @@ class XMLFilterBase(xmlreader.XMLReader):
# EntityResolver methods # EntityResolver methods
def resolveEntity(self, publicId, systemId): def resolveEntity(self, publicId, systemId):
self._ent_handler.resolveEntity(publicId, systemId) return self._ent_handler.resolveEntity(publicId, systemId)
# XMLReader methods # XMLReader methods
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment