Home > Net >  How come there is nothing in "Variables", "Watch" and "Call Stack" whe
How come there is nothing in "Variables", "Watch" and "Call Stack" whe

Time:06-12

Here is the image that shows the problem.

enter image description here

I am using Windows 11, python 3.10.

CodePudding user response:

You need to be stopped on a breakpoint in order for those panels to populate with data, otherwise, they will be empty. In your screenshot, you have a breakpoint, but you are not stopped on it. Additionally, watch won't contain anything unless you define some sort of expression.

See image below - I am stopped on a breakpoint, and the panel contains my locals. I don't have any watches, so that's empty still.

breakpoint

  • Related