消息 [89248]
Consider:
>>> from StringIO import StringIO
>>> source = StringIO('<body xmlns="http://éffbot.org/ns">text</body>')
>>> import xml.etree.ElementTree as ET
>>> events = ("start-ns",)
>>> context = ET.iterparse(source, events)
>>> for action, elem in context:
... print action, elem
...
start-ns ('', u'http://\xe9ffbot.org/ns')
>>> source.seek(0)
>>> import xml.etree.cElementTree as cET
>>> context = cET.iterparse(source, events)
>>> for action, elem in context:
... print action, elem
...
start-ns ('', 'http://\xc3\xa9ffbot.org/ns')
I'm not sure which is more correct here, but unsing different encodings
in the result is somewhat unexpected. |
|
| 日期 |
用户 |
动作 |
参数 |
| 2009-06-11 10:53:52 | Neil Muller | 修改 | recipients:
+ Neil Muller, effbot, jerith |
| 2009-06-11 10:53:52 | Neil Muller | 修改 | messageid: <1244717632.74.0.358309884859.issue6266@psf.upfronthosting.co.za> |
| 2009-06-11 10:53:51 | Neil Muller | 链接 | issue6266 messages |
| 2009-06-11 10:53:51 | Neil Muller | 创建 | |
|