commit | e4772f3ada185a40232c2e2c9a74694e815c9574 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Thu Feb 03 17:31:39 2005 +0000 |
committer | Fred Drake <fdrake@acm.org> | Thu Feb 03 17:31:39 2005 +0000 |
tree | d26bc88d872bf86c2d3bd67dcc4aecf09eb0884b | |
parent | d06414257966a1551279d68ff3ab16316e459486 [diff] [blame] |
fix XMLFilterBase.resolveEntity() so the caller gets the result (PyXML bug #1112052)
diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py index 11dd25b..582b008 100644 --- a/Lib/xml/sax/saxutils.py +++ b/Lib/xml/sax/saxutils.py
@@ -232,7 +232,7 @@ # EntityResolver methods def resolveEntity(self, publicId, systemId): - self._ent_handler.resolveEntity(publicId, systemId) + return self._ent_handler.resolveEntity(publicId, systemId) # XMLReader methods