mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
fix XMLFilterBase.resolveEntity() so the caller gets the result
(PyXML bug #1112052)
This commit is contained in:
parent
d064142579
commit
e4772f3ada
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ class XMLFilterBase(xmlreader.XMLReader):
|
|||
# EntityResolver methods
|
||||
|
||||
def resolveEntity(self, publicId, systemId):
|
||||
self._ent_handler.resolveEntity(publicId, systemId)
|
||||
return self._ent_handler.resolveEntity(publicId, systemId)
|
||||
|
||||
# XMLReader methods
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue