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

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Feb 3 18:30:50 CET 2005


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

Modified Files:
      Tag: release24-maint
	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.25.2.1
diff -u -d -r1.25 -r1.25.2.1
--- saxutils.py	20 Oct 2004 11:08:35 -0000	1.25
+++ saxutils.py	3 Feb 2005 17:30:46 -0000	1.25.2.1
@@ -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