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.

Author iritkatriel
Recipients amaury.forgeotdarc, dcallagh, iritkatriel
Date 2020-09-30.18:06:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1601489192.28.0.490110579028.issue15877@roundup.psfhosted.org>
In-reply-to
Content
I don't see this problem on 3.10. Is this still an issue or can this issue be closed?


Running Release|Win32 interpreter...
Python 3.10.0a0 (heads/bpo17490-dirty:00eb063b66, Sep 27 2020, 13:20:24) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> c = u'\u65e5\u672c\u8a9e'
>>> import xml.dom.minidom
>>> xml.dom.minidom.parseString('<?xml version="1.0" encoding="UTF-8" ?><x>%s</x>' % c.encode('UTF-8'))
<xml.dom.minidom.Document object at 0x015FC9E8>
>>> xml.dom.minidom.parseString('<?xml version="1.0" encoding="ISO-2022-JP" ?><x>%s</x>' % c.encode('ISO-2022-JP'))
<xml.dom.minidom.Document object at 0x01493208>
>>>
History
Date User Action Args
2020-09-30 18:06:32iritkatrielsetrecipients: + iritkatriel, amaury.forgeotdarc, dcallagh
2020-09-30 18:06:32iritkatrielsetmessageid: <1601489192.28.0.490110579028.issue15877@roundup.psfhosted.org>
2020-09-30 18:06:32iritkatriellinkissue15877 messages
2020-09-30 18:06:31iritkatrielcreate