M_Schofer_1111
2 years agoOccasional Contributor
Call Stack
When, I run a python program, there are times (almost always) when I want to see the Call Stack Tab in test compete. There seems very little rhyme nor reason as to when it does appear.
Any thoughts on how to have it in the output at all times.
While debugging, main() is called first,
main() then calls test(),
test1() calls test2() and so on
If I click test1() in the Call Stack, it will take me to that method, but it won't show the number that I had assigned to b.
I'm guessing the Call Stack is a "light version". Development tool like Visual Studio, you can see previous values assigned to objects via the Call Stack.