(frame)
| 72 | |
| 73 | |
| 74 | def 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 | |
| 82 | def ignore_exception_trace(trace): |
nothing calls this directly
no test coverage detected