Forum Discussion

M_Schofer_1111's avatar
M_Schofer_1111
Occasional Contributor
2 years ago
Solved

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 though...
  • rraghvani's avatar
    2 years ago

    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.