4
votes
1answer
123 views

Is it okay to call exception-triggered debugging “post-mortem debugging”?

I heard the term "post-mortem debugging", and Wikipedia says it's debugging done after the program has crashed. I often debug Python apps using a debugger that stops execution once an ...
2
votes
2answers
471 views

Debug multiprocessing in Python

What are some good practices in debugging multiprocessing programs in Python?
-1
votes
1answer
116 views

What features do you want in modern debuggers? [closed]

I am trying to build a better debugger for C/C++ and hopefully for Python and Javascript. I am not too happy single stepping through various lines of code to see what got executed and what did not. ...