MCPcopy Index your code
hub / github.com/python/cpython / walk_stack_generator

Function walk_stack_generator

Lib/traceback.py:407–410  ·  view source on GitHub ↗
(frame)

Source from the content-addressed store, hash-verified

405 f = sys._getframe().f_back
406
407 def walk_stack_generator(frame):
408 while frame is not None:
409 yield frame, frame.f_lineno
410 frame = frame.f_back
411
412 return walk_stack_generator(f)
413

Callers 1

walk_stackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…