You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inst(TO_BOOL_ALWAYS_TRUE, (unused/1, version/2, value--res)) {
// This one is a bit weird, because we expect *some* failures:assert(version);
DEOPT_IF(Py_TYPE(value)->tp_version_tag!=version, TO_BOOL);
STAT_INC(TO_BOOL, hit);
DECREF_INPUTS();
res=Py_True;
}
@gvanrossum thinks that the assert is incorrect: it appears that the current code doesn't know how to handle an instruction that uses caches but doesn't have an oparg.
I triggered this
assert
......while defining this new instruction...
@gvanrossum thinks that the
assert
is incorrect: it appears that the current code doesn't know how to handle an instruction that uses caches but doesn't have an oparg.Linked PRs
The text was updated successfully, but these errors were encountered: