pdb
2025. 1. 7. 11:53ㆍ카테고리 없음
Though you may not be able to reverse the code execution in time, the next best thing pdb has are the stack frame jumps.
Use "w" to see where you're in the stack frame (bottom is the newest), and u(p) or d(own) to traverse up the stackframe to access the frame where the function call stepped you into the current frame.