[XML-SIG] [Bug #124382] xml.dom.ext.PyExpat.Reader is useless as is.

noreply@sourceforge.net noreply@sourceforge.net
Mon, 4 Dec 2000 06:48:39 -0800


Bug #124382, was updated on 2000-Dec-04 06:48
Here is a current snapshot of the bug.

Project: Python/XML
Category: 4Suite
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: mjpieters
Assigned to : Nobody
Summary: xml.dom.ext.PyExpat.Reader is useless as is.

Details: With the conversion from 4Suite to Python-XML PyExpat.Reader has not been fully stripped of FourThrought references. fromStream still has two references to Ft.Lib code.

Also, PyExpat isn't imported; the code importing it was stripped accidently, I think. Looking at 4Suite 0.10 the follwing code should be inserted before line 24:

try:
    #Python 2.0
    import pyexpat
except ImportError:
    #Python 1.x with PyXML
    from xml.parsers import pyexpat


For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=124382&group_id=6473