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 tkuhn
Recipients tkuhn
Date 2013-11-29.13:33:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385731989.56.0.494206354245.issue19832@psf.upfronthosting.co.za>
In-reply-to
Content
The first line of an XML file should be something like this:

    <?xml version='1.0' encoding='UTF-8'?>

The XML parser of xml.sax, however, seems to ignore the value of "version":

    <?xml version='X' encoding='UTF-8'?>

This should give an error, but it doesn't. It's not a very serious problem, but this should raise an error to be standards-compliant.

I experienced this bug in the rdflib package:

    https://github.com/RDFLib/rdflib/issues/347
History
Date User Action Args
2013-11-29 13:33:09tkuhnsetrecipients: + tkuhn
2013-11-29 13:33:09tkuhnsetmessageid: <1385731989.56.0.494206354245.issue19832@psf.upfronthosting.co.za>
2013-11-29 13:33:09tkuhnlinkissue19832 messages
2013-11-29 13:33:09tkuhncreate