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

jhylton@users.sourceforge.net jhylton at users.sourceforge.net
Sun Oct 16 07:24:34 CEST 2005


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

Modified Files:
      Tag: ast-branch
	saxutils.py 
Log Message:
Merge head to branch (for the last time)


Index: saxutils.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/saxutils.py,v
retrieving revision 1.16.18.2
retrieving revision 1.16.18.3
diff -u -d -r1.16.18.2 -r1.16.18.3
--- saxutils.py	7 Jan 2005 06:59:22 -0000	1.16.18.2
+++ saxutils.py	16 Oct 2005 05:24:01 -0000	1.16.18.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