[issue15534] xmlrpc escaping breaks on unicode \u043c

Dmitry Dvoinikov report at bugs.python.org
Thu Aug 2 11:06:37 CEST 2012


New submission from Dmitry Dvoinikov:

For the following script
------------------------------------
import xmlrpc.client; from xmlrpc.client import escape
text = "...\u043c......<"
print(escape(text))
------------------------------------
Python 3.3.0b1 produces
...ь..&lt;...<
whereas Python 3.2
...ь......&lt;

----------
components: Library (Lib)
messages: 167199
nosy: ddvoinikov
priority: normal
severity: normal
status: open
title: xmlrpc escaping breaks on unicode \u043c
type: behavior
versions: Python 3.3

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15534>
_______________________________________


More information about the Python-bugs-list mailing list