(*args)
| 350 | if frame != expected: |
| 351 | errors.append(f" Popping {frame} expected {expected}") |
| 352 | def down(*args): |
| 353 | frame = sys._getframe(1) |
| 354 | stack.append(frame) |
| 355 | seen.add(frame.f_code) |
| 356 | def call(code, offset, callable, arg): |
| 357 | if not isinstance(callable, PY_CALLABLES): |
| 358 | stack.append(sys._getframe(1)) |