traceback.walk_stack(f)
Walk a stack following f.f_back
from the given frame, yielding the frame and line number for each frame. If f is None
, the current stack is used. This helper is used with StackSummary.extract()
.
New in version 3.5.
traceback.walk_stack(f)
Walk a stack following f.f_back
from the given frame, yielding the frame and line number for each frame. If f is None
, the current stack is used. This helper is used with StackSummary.extract()
.
New in version 3.5.
Please login to continue.