8000 GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque for users of PEP 523. by markshannon · Pull Request #96849 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque for users of PEP 523. #96849

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
May 5, 2023
Prev Previous commit
Fix merge.
  • Loading branch information
markshannon committed May 4, 2023
commit 7fbece8a1c728b5c08b6b40d1352c64202c1b770
2 changes: 1 addition & 1 deletion Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
next_instr points the current instruction without TARGET(). */
opcode = next_instr->op.code;
_PyErr_Format(tstate, PyExc_SystemError,
PyUnstable_InterpreterFrame_GetLine(frame), opcode);
"%U:%d: unknown opcode %d",
frame->f_code->co_filename,
PyUnstable_InterpreterFrame_GetLine(frame),
opcode);
Expand Down
0