[issue2449] Improved serialization error logging in xmlrpclib

2020-11-11 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.9 -Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue2449] Improved serialization error logging in xmlrpclib

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue2449] Improved serialization error logging in xmlrpclib

2013-05-21 Thread Mark Lawrence
Mark Lawrence added the comment: Slipped under the radar? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-11 Thread R. David Murray
R. David Murray added the comment: I was curious, so I googled. You may have already found this as well: it's a 'fault code', and apparently there's no standard for such codes. The choice of 8002 may be modeled on what twisted.web does with exceptions. Staying consistent with them is not a

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15824/issue2449.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Brian Curtin
Brian Curtin added the comment: This patch should address all but #2. I'm not exactly sure of the use-case blunck2 had in mind so I'm not sure how the message would be used. -- Added file: http://bugs.python.org/file15825/issue2449_v2.diff ___ Pytho

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Ezio Melotti
Ezio Melotti added the comment: A few things about the patch: 1) the MarshallError class has a 'message' attribute that results in a warning on some Python versions, it should be renamed in something different (like 'msg'); 2) I'm not sure why the in the exception message is necessary, but I

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +patch Added file: http://bugs.python.org/file15824/issue2449.diff ___ Python tracker ___ ___ Py

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Brian Curtin
Brian Curtin added the comment: Here is blunck2's patch updated against r77393. Once I have a better understanding of the issue I'll see if I can write tests (eg. I don't know the significance of 8002 on line 675, etc). -- stage: needs patch -> test needed ___

[issue2449] Improved serialization error logging in xmlrpclib

2010-01-10 Thread Brian Curtin
Brian Curtin added the comment: Christopher, are you willing to update your patch for the current trunk (2.7)? -- nosy: +brian.curtin stage: -> needs patch versions: +Python 2.7 -Python 2.4 ___ Python tracker

[issue2449] Improved serialization error logging in xmlrpclib

2008-03-21 Thread Christopher Blunck
New submission from Christopher Blunck <[EMAIL PROTECTED]>: When xmlrpclib fails to serialize objects into XML a generic "failed to serialize output" error is returned to the client and no log messages are produced to give insight into the true cause of the problem. In real-world scenarios where