July 2018
Beginner
202 pages
5h 42m
English
Sometimes, you need to know the call stack of the currently executing code. This can be useful for understanding how to recreate a bug, following code flow, or just to better understand how your code works as a whole. At any point, you can get the current call stack with the debug.traceback function. To visually see where in the code you are, just pass the result of this function to print, like so:
print(debug.traceback())