This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author edreamleo
Recipients amaury.forgeotdarc, benjamin.peterson, edreamleo, pitrou
Date 2008-08-18.22:04:00
SpamBayes Score 0.00043023346
Marked as misclassified No
Message-id <ffb592890808181503j278851f8ie9927d9b02631570@mail.gmail.com>
In-reply-to <1219094129.46.0.0453613607899.issue3590@psf.upfronthosting.co.za>
Content
On Mon, Aug 18, 2008 at 4:15 PM, Antoine Pitrou <report@bugs.python.org>wrote:

>
> Antoine Pitrou <pitrou@free.fr> added the comment:
>
> > The same calls to sax read the file correctly on Python 2.5.
>
> What are those calls exactly?

  parser = xml.sax.make_parser()
  parser.setFeature(xml.sax.handler.feature_external_ges,1)
  handler = saxContentHandler(c,inputFileName,silent,inClipboard)
  parser.setContentHandler(handler)
  parser.parse(theFile)

As discussed in http://bugs.python.org/issue3590

theFile is a file opened with 'rb' attributes

Edward

--------------------------------------------------------------------
Edward K. Ream email: edreamleo@gmail.com
Leo: http://webpages.charter.net/edreamleo/front.html
--------------------------------------------------------------------
Files
File name Uploaded
unnamed edreamleo, 2008-08-18.22:04:00
History
Date User Action Args
2008-08-18 22:04:01edreamleosetrecipients: + edreamleo, amaury.forgeotdarc, pitrou, benjamin.peterson
2008-08-18 22:04:00edreamleolinkissue3590 messages
2008-08-18 22:04:00edreamleocreate