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
Workaround for blocked PyObject_GenericSetAttr in metatypes
Python 3.14 introduced a new assertion that prevents us from using
PyObject_GenericSetAttr directly in our meta type. To work around
this, we manipulate the type dict directly.
This workaround is a simplified variant of Cython's workaround from
cython/cython#6325.
The relevant Python change is in
python/cpython#118454
(cherry picked from commit 08550d0)
0 commit comments