From 6d9462686124d0310777c5e9056b40c864a368d7 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 25 Sep 2024 13:37:19 -0700 Subject: [PATCH] gh-124520: What's New for ctypes metaclass __new__/__init__ change --- Doc/whatsnew/3.13.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 45817799b542bc..d0485fa34d7cb2 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -824,6 +824,19 @@ copy (Contributed by Serhiy Storchaka in :gh:`108751`.) +ctypes +------ + +* As a consequence of necessary internal refactoring, initialization of + internal metaclasses now happens in ``__init__`` rather + than in ``__new__``. This affects projects that subclass these internal + metaclasses to provide custom initialization. + Generally, logic that was done in ``__new__`` after calling + ``super().__new__`` should be moved to ``__init__``. + See :gh:`124520` for discussion and links to changes in some affected + projects. + + dbm ---