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 Zsolt Endreffy
Recipients Nathan Williams, Zsolt Endreffy, loewis, python-dev, serhiy.storchaka
Date 2017-02-09.07:40:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486626051.04.0.287717931028.issue26873@psf.upfronthosting.co.za>
In-reply-to
Content
I think this patch breaks compatibility between python 2.7 versions. Our rpc server has 2.7.10 Python version, and sends back tuples as responses (first value is a boolean, second is a string). If we connect with a computer, which has 2.7.11 or earlier Python, then it is working flawlessly. When we connect with Python 2.7.12 or later, then it sends this error:
ResponseError: ResponseError("unknown tag u'tuple'",)

As far as I understand, the xmlrpclib should be able to marshal through tuples.
History
Date User Action Args
2017-02-09 07:40:51Zsolt Endreffysetrecipients: + Zsolt Endreffy, loewis, python-dev, serhiy.storchaka, Nathan Williams
2017-02-09 07:40:51Zsolt Endreffysetmessageid: <1486626051.04.0.287717931028.issue26873@psf.upfronthosting.co.za>
2017-02-09 07:40:51Zsolt Endreffylinkissue26873 messages
2017-02-09 07:40:50Zsolt Endreffycreate