Comment 14 for bug 1130225

Revision history for this message
Mikhail Titov (mtitov) wrote :

lxml is broken in Ubuntu 13.04 . The following code fails to produce valud xml

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from lxml import etree
import sys

stream = open('/tmp/ink_ext_XXXXXX.svgJ80RTW','r')
document = etree.parse(stream)
stream.close()
document.write(sys.stdout)