[issue10108] ExpatError not property wrapped

2019-09-14 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10108] ExpatError not property wrapped

2019-09-10 Thread Stefan Behnel
Stefan Behnel added the comment: I agree that it's surprising to get a low-level parser error from a high-level library like xmlrpc. I think this can be changed without deprecation, because users must expect exceptions from the xmlrpc library in any case. Targeting to Py3.9, needs patch

[issue10108] ExpatError not property wrapped

2019-05-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Scoder, I am not sure if this issue is relevant for 3.7 and 3.8 but do you want to check this issue? Thank you, -- nosy: +matrixise, scoder versions: +Python 3.7, Python 3.8 -Python 3.1 ___ Python tracker

[issue10108] ExpatError not property wrapped

2010-10-27 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. fdr...@acm.org: -- nosy: +fdrake ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10108 ___ ___ Python-bugs-list

[issue10108] ExpatError not property wrapped

2010-10-15 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +d...@python versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10108 ___

[issue10108] ExpatError not property wrapped

2010-10-14 Thread Leo Shklovskii
New submission from Leo Shklovskii l...@thermopylae.net: From my understanding of the documentation, the expected behavior is for xmlrpclib to raise an xmlrpclib.Fault wrapping the original error from whatever parser it chose to use if there's an error in parsing the response. If, however,

[issue10108] ExpatError not property wrapped

2010-10-14 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: From my understanding of the documentation, the expected behavior is for xmlrpclib to raise an xmlrpclib.Fault [...] What specific wording in the documentation makes you thinks so? If anything, I'd expect a ResponseError (which appears

[issue10108] ExpatError not property wrapped

2010-10-14 Thread Leo Shklovskii
Leo Shklovskii l...@thermopylae.net added the comment: Looking at the docs more closely, you're right, I'm not entirely sure what error should come out in that case but my main point with the bug is that the error should be an xmlrpclib error rather than one from the specific parser that its

[issue10108] ExpatError not property wrapped

2010-10-14 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Not necessarily a separate report. Would you be interested in writing a patch that clears that all up (for 2.7 and/or 3.2)? -- ___ Python tracker rep...@bugs.python.org

[issue10108] ExpatError not property wrapped

2010-10-14 Thread Leo Shklovskii
Leo Shklovskii l...@thermopylae.net added the comment: I'm sorry, I would like to but I don't have the time in the near future. I'm running into this as a secondary symptom of a bigger issue (in our own setup, not in Python) that I'm troubleshooting. --