Message155516
| Author |
gregory.p.smith |
| Recipients |
amaury.forgeotdarc, barry, benjamin.peterson, dmalcolm, georg.brandl, gregory.p.smith, pitrou |
| Date |
2012年03月12日.23:22:27 |
| SpamBayes Score |
6.5876426e-05 |
| Marked as misclassified |
No |
| Message-id |
<1331594548.77.0.846970895786.issue14234@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Oddly, test_sax fails once this patch is applied (using 3.1). debugging now.
test_sax
test test_sax failed -- Traceback (most recent call last):
File "/home/greg/sandbox/python/cpython/3.1/Lib/xml/sax/expatreader.py", line 207, in feed
self._parser.Parse(data, isFinal)
xml.parsers.expat.ExpatError: unbound prefix: line 1, column 59
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/greg/sandbox/python/cpython/3.1/Lib/test/test_sax.py", line 310, in test_5027_1
parser.parse(test_xml)
File "/home/greg/sandbox/python/cpython/3.1/Lib/xml/sax/expatreader.py", line 107, in parse
xmlreader.IncrementalParser.parse(self, source)
File "/home/greg/sandbox/python/cpython/3.1/Lib/xml/sax/xmlreader.py", line 123, in parse
self.feed(buffer)
File "/home/greg/sandbox/python/cpython/3.1/Lib/xml/sax/expatreader.py", line 211, in feed
self._err_handler.fatalError(exc)
File "/home/greg/sandbox/python/cpython/3.1/Lib/xml/sax/handler.py", line 38, in fatalError
raise exception
xml.sax._exceptions.SAXParseException: <unknown>:1:59: unbound prefix |
|