Message5063
In xml.parsers.expat, missing Entity Parsing flags...
In Python:
>>> from xml.parsers import expat
>>> parser = expat.ParserCreate()
>>> parser.SetParamEntityParsing(expat.XML_PARAM_ENTITY_PARSING_ALWAYS)
1
In Jython:
>>> from xml.parsers import expat
>>> parser = expat.ParserCreate()
>>> parser.SetParamEntityParsing(expat.XML_PARAM_ENTITY_PARSING_ALWAYS)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'XMLParser' object has no attribute 'SetParamEntityParsing'
Failing to set this parameter also seems to have an effect on the
parsing of element decelerations in linked DTDs. |
|
Date |
User |
Action |
Args |
2009-08-25 00:18:00 | kellrott | set | recipients:
+ kellrott |
2009-08-25 00:18:00 | kellrott | set | messageid: <1251159480.07.0.548695729162.issue1447@psf.upfronthosting.co.za> |
2009-08-25 00:17:59 | kellrott | link | issue1447 messages |
2009-08-25 00:17:59 | kellrott | create | |
|