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
Following up after #60074 and #103968:
In 3.14, the deprecation period is over and PyType_From* should fail if the metaclass has custom tp_new. That means the tp_new is no longer silently skipped.
The proper way to instantiate such a metaclass is to call it.
Following up after #60074 and #103968:
In 3.14, the deprecation period is over and
PyType_From*
should fail if the metaclass has customtp_new
. That means thetp_new
is no longer silently skipped.The proper way to instantiate such a metaclass is to call it.
Linked PRs
The text was updated successfully, but these errors were encountered: