[Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.25, 1.26

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Feb 3 18:31:59 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16764

Modified Files:
	saxutils.py 
Log Message:
fix XMLFilterBase.resolveEntity() so the caller gets the result
(PyXML bug #1112052)


Index: saxutils.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/saxutils.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- saxutils.py	20 Oct 2004 11:08:35 -0000	1.25
+++ saxutils.py	3 Feb 2005 17:31:39 -0000	1.26
@@ -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
 



More information about the Python-checkins mailing list