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.
Created on 2009年12月30日 14:01 by jwilk, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg97032 - (view) | Author: Jakub Wilk (jwilk) | Date: 2009年12月30日 14:01 | |
$ cat buggy.py
import sys
from xml.etree import ElementTree as et
root = et.Element('root')
root.text = u'\x07'
et.ElementTree(root).write(sys.stdout)
$ python buggy.py | xmllint -
-:1: parser error : PCDATA invalid Char value 7
<root></root>
^
|
|||
| msg99408 - (view) | Author: Florent Xicluna (flox) * (Python committer) | Date: 2010年02月16日 13:50 | |
Duplicate of #5166. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:55 | admin | set | github: 51848 |
| 2010年02月16日 13:50:26 | flox | set | status: open -> closed nosy: + flox messages: + msg99408 superseder: ElementTree and minidom don't prevent creation of not well-formed XML resolution: duplicate |
| 2009年12月30日 14:01:34 | jwilk | create | |