[issue34098] multiprocessing.Server swallows original exception traceback

2019-03-25 Thread Cheryl Sabella
Change by Cheryl Sabella : -- nosy: +davin, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34098] multiprocessing.Server swallows original exception traceback

2018-07-11 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +7786 stage: -> patch review ___ Python tracker ___ ___

[issue34098] multiprocessing.Server swallows original exception traceback

2018-07-11 Thread Guilherme Salgado
New submission from Guilherme Salgado : multiprocessing.Server swallows original exception traceback, making it hard to debug. For example, the following code: ``` from multiprocessing.managers import BaseManager class FooBar(object): def m(self): self._raise() def