We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75903f2 commit 66b4d9cCopy full SHA for 66b4d9c
Python/specialize.c
@@ -300,8 +300,6 @@ _PyCode_Quicken(PyCodeObject *code)
300
for (int i = 0; i < Py_SIZE(code); i++) {
301
opcode = _Py_GetBaseOpcode(code, i);
302
assert(opcode < MIN_INSTRUMENTED_OPCODE);
303
- // _PyCode_Quicken is only called when initializing a fresh code object.
304
- assert(opcode != ENTER_EXECUTOR);
305
int caches = _PyOpcode_Caches[opcode];
306
if (caches) {
307
instructions[i + 1].cache = adaptive_counter_warmup();
0 commit comments