Home > database >  VSCode Python debugging step back/review history
VSCode Python debugging step back/review history

Time:02-05

How can I set a conditional breakpoint in VSCode Python, then step back n lines to see how that condition was met?

CodePudding user response:

You probably need something like PyTrace. It allows you to debug and replay/rewind the state of the interpreter to see how you got to your breakpoint. https://pytrace.com/

  •  Tags:  
  • Related