[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread STINNER Victor
STINNER Victor added the comment: The issue should be fixed, thanks for the report! -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e95b61af859 by Victor Stinner in branch 'default': Close #15534: Fix a typo in the fast search function of the string library (_s => s) http://hg.python.org/cpython/rev/0e95b61af859 -- nosy: +python-dev resolution: -> fixed stage: -> com

[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ow, nice find. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread STINNER Victor
Changes by STINNER Victor : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread STINNER Victor
STINNER Victor added the comment: Hum, it's a regression introduced by the super-optimized fastsearch. It is just a typo: _s => s. I renamed _s to ptr to avoid future confusion ;-) -- For your information, str.find(), str.rfind(), str.index(), str.rindex() and str.replace() are now using memc

[issue15534] xmlrpc escaping breaks on unicode \u043c

2012-08-02 Thread Dmitry Dvoinikov
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 ...ь..<...< whereas Python 3.2 ...ь