[issue32184] pdb/ipdb is not usable on Linux (which works on Windows) from a single multiprocessing.Process when the main process is stuck at process.join()

2017-11-30 Thread nartes
nartes added the comment: https://gist.github.com/efe828a7bbac97e02a7d83d2a2d78540 import io import os import sys import multiprocessing class B(multiprocessing.Process): @classmethod def _my_thread(self, a, b): print("Class method as a separate

[issue32184] pdb/ipdb is not usable on Linux (which works on Windows) from a single multiprocessing.Process when the main process is stuck at process.join()

2017-11-30 Thread nartes
New submission from nartes : https://asciinema.org/a/Sl7BTmS4krLdrLb9c4YeMgAG1 -- components: Interpreter Core, Library (Lib) files: parallel_sandbox.py messages: 307332 nosy: nartes priority: normal severity: normal status: open title: pdb/ipdb is not usable