We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2850d72 commit 78489eaCopy full SHA for 78489ea
Python/optimizer.c
@@ -336,9 +336,7 @@ uop_item(PyObject *op, Py_ssize_t index)
336
PyErr_SetNone(PyExc_IndexError);
337
return NULL;
338
}
339
- int opcode = self->trace[index].opcode;
340
- int base_opcode = _PyUop_Uncached[opcode];
341
- const char *name = _PyUOpName(base_opcode);
+ const char *name = _PyUOpName(self->trace[index].opcode);
342
if (name == NULL) {
343
name = "<nil>";
344
0 commit comments