MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / short_stack

Function short_stack

_pydevd_bundle/pydevd_frame_utils.py:74–79  ·  view source on GitHub ↗
(frame)

Source from the content-addressed store, hash-verified

72
73
74def short_stack(frame):
75 stack = []
76 while frame:
77 stack.append(short_frame(frame))
78 frame = frame.f_back if hasattr(frame, "f_back") else None
79 return "Stack: %s\n" % (" -> ".join(stack))
80
81
82def ignore_exception_trace(trace):

Callers

nothing calls this directly

Calls 3

short_frameFunction · 0.85
appendMethod · 0.45
joinMethod · 0.45

Tested by

no test coverage detected