diff --git a/Python/ceval.c b/Python/ceval.c index 411ba3d73c5..cb0275c4183 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1117,9 +1117,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag) assert(co_opt_offset <= co->co_opcache_size); \ co_opcache = &co->co_opcache[co_opt_offset - 1]; \ assert(co_opcache != NULL); \ - if (co_opcache->optimized < 0) { \ - co_opcache = NULL; \ - } \ } \ } \ } while (0)