Home > OS >  How can I start an interactive session at breakpoint in VS Code?
How can I start an interactive session at breakpoint in VS Code?

Time:08-22

Typical Situation in VS Code

Above is a typical situation that I encounter. We hit an exception and now would like to get some more details about what went wrong. This is where I wish I could just jump right into an interactive python session and try to run the marked line manually to find out e.g. what the find_many might look like and if it actually does have a select method. How can I do this?

CodePudding user response:

I think the enter image description here

  • Related