I am using Pdb the debugger of Python. when I set a breakpoint in my callback, the Pdb doesn't stop there. I used :
continue
I am using Pdb the debugger of Python. when I set a breakpoint in my callback, the Pdb doesn't stop there. I used :
continue
Use import pdb; pdb.set_trace() if you want to specify in your source code that the debugger should be invoked at that point.