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

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Feb 3 18:29:36 CET 2005


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

Modified Files:
      Tag: release23-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.21.10.2
retrieving revision 1.21.10.3
diff -u -d -r1.21.10.2 -r1.21.10.3
--- saxutils.py	6 May 2004 02:22:23 -0000	1.21.10.2
+++ saxutils.py	3 Feb 2005 17:29:32 -0000	1.21.10.3
@@ -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