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
In #117275 we started performing reads of the MRO in PyType_IsSubtype in a thread-unsafe way. We need to read the MRO in a way that ideally doesn't lock, or at the very least locks without the possibility of suspending.
One potential solution is to use deferred reference counting to avoid locking.
Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere