Search code examples
pythondebuggingbreakpointspdb

How do you break into the debugger from Python source code?


What do you insert into Python source code to have it break into pdb (when execution gets to that spot)?


Solution

  • import pdb; pdb.set_trace()
    

    See Python: Coding in the Debugger for Beginners for this and more helpful hints.