-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-127773: Disable attribute cache on incompatible MRO entries #127924
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes sense to me, but @markshannon is probably more familiar with the MRO cache and tp_versions_used
.
Misc/NEWS.d/next/Core_and_Builtins/2024-12-13-15-21-45.gh-issue-127773.E-DZR4.rst
Outdated
Show resolved
Hide resolved
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
We define `static_assert` in `pymacro.h`.
The issues on failed buildbots are unrelated (the |
@markshannon, do you want to take a look? |
If there are no objections, I'll merge this next week. |
This brings back the functionality of
Py_TPFLAGS_HAVE_VERSION_TAG
, which should have been named “use version tag”, as the field itself is always present -- see #27260 where I mistakenly removed it.The type attribute cache relies on a class being able to invalidate caches of all of its subclasses. If a type's MRO contains an entry that's not that type's base, the cache needs to be disabled.
This requires a single bit, which was in
tp_flags
in 3.9 and below.I'd like to avoid using
tp_flags
for an internal flag (even one that's currently reserved for ABI compatibility).We already have a mechanism for disabling the cache: it's disabled after 1000 modifications to a single type, using
tp_versions_used
as a counter. It would be possible to set this to 1000 (MAX_VERSIONS_PER_CLASS
) when an incompatible MRO is found. To make the code & logic more understandable, this PR uses a new bigger constant,_Py_ATTR_CACHE_UNUSED
. The existingtp_versions_used
check is reused.If the
tp_versions_used
mechanism is dropped in the future,_Py_ATTR_CACHE_UNUSED
can become a single bit stored elsewhere inPyTypeObject
. Ideally in a private (underscore-prefixed) field; not intp_flags
.@markshannon @colesbury Does this sound right? I'm not much of an attribute cache expert and I don't know about future plans in this area.