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 <[email protected]>
In-reply-to <[email protected]>
Content
On Mon, Aug 18, 2008 at 4:15 PM, Antoine Pitrou <[email protected]>wrote:

>
> Antoine Pitrou <[email protected]> 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: [email protected]
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