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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, loewis, mbonnet, pitrou
Date 2008-02-18.14:15:05
SpamBayes Score 0.0020649058
Marked as misclassified No
Message-id <1203344106.32.0.486901509697.issue1739842@psf.upfronthosting.co.za>
In-reply-to
Content
Seems fixed indeed. Tested the following script:

import xmlrpclib
e = xmlrpclib.Fault("Error", "Message")
((d,), _) = xmlrpclib.loads(xmlrpclib.dumps((e,)))
assert d['faultString'] == "Message"

which works with python2.4, fails with python2.5, and works again with
python 2.6a0.

Now, this is a bug in 2.5, but the fix can be considered as a new
feature. I don't know if we should backport this.
History
Date User Action Args
2008-02-18 14:15:06amaury.forgeotdarcsetspambayes_score: 0.00206491 -> 0.0020649058
recipients: + amaury.forgeotdarc, loewis, pitrou, mbonnet
2008-02-18 14:15:06amaury.forgeotdarcsetspambayes_score: 0.00206491 -> 0.00206491
messageid: <1203344106.32.0.486901509697.issue1739842@psf.upfronthosting.co.za>
2008-02-18 14:15:05amaury.forgeotdarclinkissue1739842 messages
2008-02-18 14:15:05amaury.forgeotdarccreate