Skip to content

Commit 7fbece8

Browse files
committed
Fix merge.
1 parent 53ce02c commit 7fbece8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
784784
next_instr points the current instruction without TARGET(). */
785785
opcode = next_instr->op.code;
786786
_PyErr_Format(tstate, PyExc_SystemError,
787-
PyUnstable_InterpreterFrame_GetLine(frame), opcode);
787+
"%U:%d: unknown opcode %d",
788788
frame->f_code->co_filename,
789789
PyUnstable_InterpreterFrame_GetLine(frame),
790790
opcode);

0 commit comments

Comments
 (0)