[issue29615] SimpleXMLRPCDispatcher._dispatch mangles tracebacks when invoking RPC calls through _dispatch

2017-03-05 Thread Petr MOTEJLEK
Changes by Petr MOTEJLEK <p...@motejlek.net>: -- pull_requests: +392 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29615> ___ _

[issue29615] SimpleXMLRPCDispatcher._dispatch mangles tracebacks when invoking RPC calls through _dispatch

2017-03-05 Thread Petr MOTEJLEK
Changes by Petr MOTEJLEK <p...@motejlek.net>: -- pull_requests: +391 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29615> ___ _

[issue29615] SimpleXMLRPCDispatcher._dispatch mangles tracebacks when invoking RPC calls through _dispatch

2017-02-23 Thread Petr MOTEJLEK
Changes by Petr MOTEJLEK <p...@motejlek.net>: -- pull_requests: +231 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29615> ___ _

[issue29615] SimpleXMLRPCDispatcher._dispatch mangles tracebacks when invoking RPC calls through _dispatch

2017-02-21 Thread Petr MOTEJLEK
New submission from Petr MOTEJLEK: Hello, We discovered that SimpleXMLRPCDispatcher mangles tracebacks printed from within the invoked RPC methods when an object that has _dispatch(method, params) defined has been registered with it Steps to reproduce - use https://docs.python.org/3.4

[issue29374] Doc bug: signal.sigwait and signal.sigtimedwait do not work outside the Main thread

2017-01-25 Thread Petr MOTEJLEK
New submission from Petr MOTEJLEK: Hi, The documentation for signal.signal() clearly states that it is only supposed to be called on MainThread However, it does not say so for the signal.sigwait() and neither signal.sigtimedwait() I think this is an error on the documentation side of things