[XML-SIG] [ pyxml-Bugs-814935 ] Bug in saxutils.py where resolveEntity returns None

SourceForge.net noreply at sourceforge.net
Tue Sep 30 02:54:34 EDT 2003


Bugs item #814935, was opened at 2003-09-30 08:54
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106473&aid=814935&group_id=6473

Category: SAX
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Radovan Chytracek (chytrace)
Assigned to: Nobody/Anonymous (nobody)
Summary: Bug in saxutils.py where resolveEntity returns None

Initial Comment:
saxutils.py, line432 :



# EntityResolver methods



def resolveEntity(self, publicId, systemId):

     self._ent_handler.resolveEntity(publicId, systemId)



# XMLReader methods



resolveEntity does not return the resolved InputSource.



Should be:



# EntityResolver methods



def resolveEntity(self, publicId, systemId):

  return self._ent_handler.resolveEntity

(publicId,systemId)



    # XMLReader methods





----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106473&aid=814935&group_id=6473



More information about the XML-SIG mailing list