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 3bab1b7 commit e545c55Copy full SHA for e545c55
Python/ceval_macros.h
@@ -364,7 +364,7 @@ GETITEM(PyObject *v, Py_ssize_t i) {
364
if ((COND)) { \
365
/* This is only a single jump on release builds! */ \
366
UPDATE_MISS_STATS((INSTNAME)); \
367
- assert(_PyOpcode_Deopt[opcode] == (INSTNAME)); \
+ /* assert(_PyOpcode_Deopt[opcode] == (INSTNAME)); */ \
368
GO_TO_INSTRUCTION(INSTNAME); \
369
}
370
@@ -496,7 +496,7 @@ do { \
496
tstate->previous_executor = NULL; \
497
frame = tstate->current_frame; \
498
if (next_instr == NULL) { \
499
- goto resume_with_error; \
+ CEVAL_GOTO(resume_with_error); \
500
} \
501
stack_pointer = _PyFrame_GetStackPointer(frame); \
502
DISPATCH(); \
0 commit comments