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.

classification
Title: Encoding errors in xmlrpc
Type: behavior Stage: resolved
Components: Library (Lib), XML Versions: Python 3.6, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: loewis, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2016-01-18 18:21 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
xmlrpc_escape_nonencodable-3.x.patch serhiy.storchaka, 2016-01-18 18:21 review
xmlrpc_escape_nonencodable-2.7.patch serhiy.storchaka, 2016-01-18 18:22 review
Messages (2)
msg258537 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-01-18 18:21
Proposed patch fixes issue with sending non-encodable string via XML RPC. This issue caused raising an exception or even hanging.
msg258654 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-01-20 09:10
New changeset bb2cb184eca9 by Serhiy Storchaka in branch '2.7':
Issue #26147: xmlrpclib now works with unicode not encodable with used
https://hg.python.org/cpython/rev/bb2cb184eca9

New changeset 6c624ba1b61e by Serhiy Storchaka in branch '3.5':
Issue #26147: xmlrpc now works with strings not encodable with used
https://hg.python.org/cpython/rev/6c624ba1b61e

New changeset 72034327022e by Serhiy Storchaka in branch 'default':
Issue #26147: xmlrpc now works with strings not encodable with used
https://hg.python.org/cpython/rev/72034327022e
History
Date User Action Args
2022-04-11 14:58:26adminsetgithub: 70335
2016-01-20 09:27:32serhiy.storchakasetstatus: open -> closed
assignee: serhiy.storchaka
resolution: fixed
stage: patch review -> resolved
2016-01-20 09:10:06python-devsetnosy: + python-dev
messages: + msg258654
2016-01-18 18:22:02serhiy.storchakasetfiles: + xmlrpc_escape_nonencodable-2.7.patch
2016-01-18 18:21:49serhiy.storchakacreate